blog-fs/pages/_app.tsx

9 lines
172 B
TypeScript
Raw Normal View History

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