fedisearch/application/src/pages/_app.tsx

10 wiersze
217 B
TypeScript
Czysty Zwykły widok Historia

2022-01-01 19:37:33 +00:00
import '../styles/global.scss'
import { AppProps } from 'next/app'
import React from 'react'
const App:React.FC<AppProps> = ({ Component, pageProps }) => {
return <Component {...pageProps} />
}
export default App