first commit
This commit is contained in:
12
frontend/src/pages/_app.tsx
Normal file
12
frontend/src/pages/_app.tsx
Normal file
@@ -0,0 +1,12 @@
|
||||
import { AuthProvider } from '../api';
|
||||
import '../styles/globals.css';
|
||||
|
||||
function App({ Component, pageProps }: any) {
|
||||
return (
|
||||
<AuthProvider>
|
||||
<Component {...pageProps} />
|
||||
</AuthProvider>
|
||||
);
|
||||
}
|
||||
|
||||
export default App;
|
||||
Reference in New Issue
Block a user