import { PropsWithChildren } from 'react' import { withAuth } from '@/hooks/misc/withAuth' const WizardLayout = ({ children }: PropsWithChildren<{}>) => { return (
{children}
) } export default withAuth(WizardLayout) export const WizardLayoutWithoutAuth = WizardLayout