vega-frontend-monorepo/apps/trading/pages/_app.tsx

22 lines
469 B
TypeScript
Raw Normal View History

import { AppProps } from 'next/app';
import Head from 'next/head';
2022-02-23 14:49:24 +00:00
//import './styles.css';
import 'tailwindcss/tailwind.css';
2022-02-17 05:08:17 +00:00
import { Navbar } from '../components/navbar';
2022-02-17 05:03:46 +00:00
function VegaTradingApp({ Component, pageProps }: AppProps) {
return (
<>
<Head>
<title>Welcome to trading!</title>
</Head>
2022-02-17 05:08:17 +00:00
<Navbar />
<main className="app">
<Component {...pageProps} />
</main>
</>
);
}
2022-02-17 05:03:46 +00:00
export default VegaTradingApp;