wisesplit/pages/_app.tsx

14 lines
289 B
TypeScript
Raw Permalink Normal View History

2022-10-24 02:40:14 -05:00
import "bootstrap/dist/css/bootstrap.min.css";
2022-10-24 02:10:52 -05:00
import type { AppProps } from "next/app";
2022-10-24 02:40:14 -05:00
import Layout from "../components/Layout";
2022-10-24 02:10:52 -05:00
function MyApp({ Component, pageProps }: AppProps) {
2022-10-24 02:40:14 -05:00
return (
<Layout>
<Component {...pageProps} />
</Layout>
);
2022-10-24 02:10:52 -05:00
}
export default MyApp;