create(layout) created persistance layout

This commit is contained in:
Yusuf İpek
2021-07-26 15:10:13 +03:00
parent 833c6c79cd
commit 20b769086a
18 changed files with 814 additions and 203 deletions
+8 -3
View File
@@ -1,7 +1,12 @@
import '../styles/globals.css'
import "../styles/globals.scss";
import Layout from "../components/layout";
function MyApp({ Component, pageProps }) {
return <Component {...pageProps} />
return (
<Layout>
<Component {...pageProps} />
</Layout>
);
}
export default MyApp
export default MyApp;