14 lines
327 B
TypeScript
14 lines
327 B
TypeScript
import type { AppProps } from "next/app";
|
|
import "../styles/global.css";
|
|
import "../styles/prism.css";
|
|
import type { HomeProps } from "./notes";
|
|
import type React from "react";
|
|
|
|
|
|
|
|
export default function App({ Component, pageProps }: AppProps<HomeProps>): React.JSX.Element {
|
|
return (
|
|
<Component {...pageProps} />
|
|
);
|
|
}
|