mirror of
https://github.com/yusufipk/teknolojirehberleri.xyz.git
synced 2026-09-11 10:56:08 +00:00
13 lines
223 B
JavaScript
13 lines
223 B
JavaScript
import "../styles/globals.scss";
|
|
import Layout from "../components/layout";
|
|
|
|
function MyApp({ Component, pageProps }) {
|
|
return (
|
|
<Layout>
|
|
<Component {...pageProps} />
|
|
</Layout>
|
|
);
|
|
}
|
|
|
|
export default MyApp;
|