owncast/web/pages/_app.tsx

10 lines
208 B
TypeScript
Raw Normal View History

2020-10-01 00:12:10 +02:00
import 'antd/dist/antd.css';
import '../styles/globals.css'
import { AppProps } from 'next/app'
function App({ Component, pageProps }: AppProps) {
return <Component {...pageProps} />
}
export default App