mirror of
https://github.com/phuoc-ng/csslayout.git
synced 2025-10-23 18:56:29 +02:00
17 lines
393 B
TypeScript
17 lines
393 B
TypeScript
import Head from 'next/head';
|
|
|
|
// Design
|
|
import '@1milligram/design/lib/styles/index.css';
|
|
import '../styles/index.scss';
|
|
|
|
export default function MyApp({ Component, pageProps }) {
|
|
return (
|
|
<>
|
|
<Head>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
</Head>
|
|
<Component {...pageProps} />
|
|
</>
|
|
);
|
|
}
|