import { COMMON_CSS } from "./CommonStyles.ts"; export const Layout = ({ children, title, }: { children: any; title: string; }) => { return ( {title} - Auth-Yes
{children}
); };