1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-10-02 06:59:09 +00:00
conky/web/pages/_app.tsx
Brenden Matthews aaee4ceb2f Remove that
2024-02-22 18:56:09 -05:00

12 lines
296 B
TypeScript

import '@fontsource-variable/fira-code'
import '@fontsource-variable/inter'
import '@fontsource-variable/newsreader'
import '../styles/globals.css'
import { AppProps } from 'next/app'
function App({ Component, pageProps }: AppProps) {
return <Component {...pageProps} />
}
export default App