1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-10-02 15:09:07 +00:00
conky/web/pages/_app.tsx

13 lines
339 B
TypeScript
Raw Normal View History

2023-06-24 18:34:22 +00:00
import '@fontsource-variable/fira-code'
import '@fontsource-variable/inter'
import '@fontsource-variable/newsreader'
import 'prismjs/themes/prism-tomorrow.css'
import '../styles/globals.css'
import { AppProps } from 'next/app'
function App({ Component, pageProps }: AppProps) {
2022-10-05 13:24:33 +00:00
return <Component {...pageProps} />
}
export default App