mirror of
https://github.com/estruyf/vscode-front-matter.git
synced 2026-07-03 08:21:13 +02:00
10 lines
223 B
TypeScript
10 lines
223 B
TypeScript
import '../styles/globals.css';
|
|
import type { AppProps } from 'next/app';
|
|
import '../locale/localization';
|
|
|
|
function MyApp({ Component, pageProps }: AppProps) {
|
|
return <Component {...pageProps} />
|
|
}
|
|
|
|
export default MyApp
|