11 lines
189 B
TypeScript
11 lines
189 B
TypeScript
import App from './App';
|
|
import { AuthGate } from './components/auth/AuthGate';
|
|
|
|
export default function AuthenticatedApp() {
|
|
return (
|
|
<AuthGate>
|
|
<App />
|
|
</AuthGate>
|
|
);
|
|
}
|