XeNote/pages/_app.tsx

14 lines
401 B
TypeScript
Raw Normal View History

2024-01-07 18:05:04 +00:00
import '../styles/global.css'
import '../styles/prism.css'
2024-01-14 20:03:45 +00:00
import '../components/portfolio/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 {
const _Component: any = Component
return (
<_Component {...pageProps} />
2024-01-07 18:05:04 +00:00
)
2020-11-28 15:45:01 +00:00
}