15 lines
307 B
TypeScript
15 lines
307 B
TypeScript
|
import Head from 'next/head'
|
||
|
|
||
|
export default function MyApp({ Component, pageProps}) {
|
||
|
return (
|
||
|
<>
|
||
|
<Head>
|
||
|
<title>Dress to Impress</title>
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||
|
</Head>
|
||
|
|
||
|
<Component {...pageProps} />
|
||
|
</>
|
||
|
)
|
||
|
}
|