mirror of
https://github.com/Llewellynvdm/conky.git
synced 2024-11-17 10:35:10 +00:00
12 lines
296 B
TypeScript
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
|