2022-05-06 20:42:48 -03:00

20 lines
442 B
TypeScript

import React from 'react'
import '../styles/globals.ts'
import { AppProps } from 'next/app'
import Sidebar from '../src/components/sidebar/Sidebar'
import { GlobalStyle } from '../styles/globals'
import { AppView } from '../styles/app/AppView'
function MyApp({ Component, pageProps }: AppProps) {
return (
<AppView>
<GlobalStyle />
<Sidebar />
<Component {...pageProps} />
</AppView>
)
}
export default MyApp