import React from 'react' const WizardLayout: React.FC<{ children?: React.ReactNode }> = ({ children }) => { return (
{children}
) } export default WizardLayout