2024-01-07 18:05:04 +00:00
|
|
|
import '../styles/global.css'
|
|
|
|
import '../styles/prism.css'
|
2024-01-11 23:47:28 +00:00
|
|
|
import '../components/alien_styles.css'
|
2024-01-07 18:05:04 +00:00
|
|
|
import type { AppProps } from 'next/app'
|
|
|
|
import type { HomeProps } from './notes'
|
|
|
|
import React from 'react'
|
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} />
|
2024-01-07 18:05:04 +00:00
|
|
|
)
|
2020-11-28 15:45:01 +00:00
|
|
|
}
|