rallly/components/steps/step.tsx
2022-04-12 07:14:28 +01:00

16 lines
268 B
TypeScript

import React from "react";
export interface StepProps {
title: string;
}
const Step: React.FunctionComponent<StepProps> = ({ title, children }) => {
return (
<div>
<div>{title}</div>
<div>{children}</div>
</div>
);
};
export default Step;