XeNote/pages/_app.tsx

14 lines
327 B
TypeScript
Raw Normal View History

import "../styles/global.css";
import "../styles/prism.css";
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 {
return (
2023-12-24 06:13:41 +00:00
<Component {...pageProps} />
);
2020-11-28 15:45:01 +00:00
}