Spaces:
Sleeping
Sleeping
| import React from "react"; | |
| import Layout from "./layout"; | |
| interface AppLayoutProps { | |
| children: React.ReactNode; | |
| } | |
| const AppLayout: React.FC<AppLayoutProps> = ({ children }) => { | |
| return <Layout>{children}</Layout>; | |
| }; | |
| export default AppLayout; |