blog-fs/pages/_app.js

8 lines
137 B
JavaScript
Raw Normal View History

2021-05-01 17:33:49 +08:00
import '../styles/globals.css'
function MyApp({ Component, pageProps }) {
return <Component {...pageProps} />
}
export default MyApp