You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
363 B

3 years ago
import { BrowserRouter } from 'react-router-dom'
import { UserContextProvider } from './contexts/UserContext'
import { CoreLayout } from './layout/CoreLayout'
3 years ago
import './scss/app.scss'
3 years ago
3 years ago
const App = () => {
3 years ago
return (
<BrowserRouter>
<UserContextProvider>
<CoreLayout />
</UserContextProvider>
</BrowserRouter>
)
}
export default App