import { FC, ReactNode } from "react"; import style from './style.module.scss' interface AppLayoutProp { children?: ReactNode } export const AppLayout: FC = ({ children }) =>
{children}