feat: migrate runtime backend to node server
This commit is contained in:
10
src/AuthenticatedApp.tsx
Normal file
10
src/AuthenticatedApp.tsx
Normal file
@@ -0,0 +1,10 @@
|
||||
import App from './App';
|
||||
import { AuthGate } from './components/auth/AuthGate';
|
||||
|
||||
export default function AuthenticatedApp() {
|
||||
return (
|
||||
<AuthGate>
|
||||
<App />
|
||||
</AuthGate>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user