import type React from "react"; interface Props { children: React.ReactNode; } export const OnboardingLayout = ({ children }: Props) => { return <>{children}; };