const StepCard: React.FC<{ children: React.ReactNode }> = (props) => { return (
{props.children}
); }; export { StepCard };