8 lines
156 B
TypeScript
8 lines
156 B
TypeScript
/* istanbul ignore file */
|
|
import '../styles/index.css'
|
|
|
|
export default function MyApp({ Component, pageProps }) {
|
|
return <Component {...pageProps} />
|
|
}
|
|
|