2022-05-26 04:29:36 +00:00
|
|
|
import "../styles/global.css";
|
|
|
|
import "../styles/prism.css";
|
2024-01-07 03:04:57 +00:00
|
|
|
import type { AppProps } from "next/app";
|
2023-12-31 21:25:34 +00:00
|
|
|
import type { HomeProps } from "./notes";
|
|
|
|
import type React from "react";
|
2023-12-26 01:26:45 +00:00
|
|
|
|
2023-12-31 21:25:34 +00:00
|
|
|
|
|
|
|
|
|
|
|
export default function App({ Component, pageProps }: AppProps<HomeProps>): React.JSX.Element {
|
2024-01-07 07:50:56 +00:00
|
|
|
const _Component: any = Component
|
2022-05-26 04:29:36 +00:00
|
|
|
return (
|
2024-01-07 07:50:56 +00:00
|
|
|
<_Component {...pageProps} />
|
2022-05-26 04:29:36 +00:00
|
|
|
);
|
2020-11-28 15:45:01 +00:00
|
|
|
}
|