19 lines
358 B
TypeScript
19 lines
358 B
TypeScript
|
import { AppProps } from 'next/app';
|
||
|
import Head from 'next/head';
|
||
|
import './styles.css';
|
||
|
|
||
|
function CustomApp({ Component, pageProps }: AppProps) {
|
||
|
return (
|
||
|
<>
|
||
|
<Head>
|
||
|
<title>Welcome to trading!</title>
|
||
|
</Head>
|
||
|
<main className="app">
|
||
|
<Component {...pageProps} />
|
||
|
</main>
|
||
|
</>
|
||
|
);
|
||
|
}
|
||
|
|
||
|
export default CustomApp;
|