diff options
| author | soryu <soryu@soryu.co> | 2026-06-03 19:45:41 +0100 |
|---|---|---|
| committer | soryu <soryu@soryu.co> | 2026-06-03 19:45:41 +0100 |
| commit | 1a995e32c8468d35e88b4e9618458f0cb29ae3c5 (patch) | |
| tree | 6b65796a244f0ddf4fc473607a9bfccd1f36d789 /frontend/src/App.tsx | |
| parent | f13352a3a5860477957d16b7ce00169d385f56da (diff) | |
| download | soryu-makima/directive-soryu---soryu-co-78ae2579.tar.gz soryu-makima/directive-soryu---soryu-co-78ae2579.zip | |
feat: soryu - soryu.co: Remove Login button from LandingPagemakima/soryu---soryu-co--remove-login-button-from-landing-bd6ac294makima/directive-soryu---soryu-co-78ae2579
Diffstat (limited to 'frontend/src/App.tsx')
| -rw-r--r-- | frontend/src/App.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx index 0a0e008..9a84b3b 100644 --- a/frontend/src/App.tsx +++ b/frontend/src/App.tsx @@ -2,7 +2,7 @@ import React from 'react' import { useStore } from '@nanostores/react' import { LandingPage } from './components/LandingPage' import { VNInterface } from './components/VNInterface' -import { isLoggedInStore, login, logout } from './stores' +import { isLoggedInStore, logout } from './stores' export default function App() { const isLoggedIn = useStore(isLoggedInStore) @@ -12,7 +12,7 @@ export default function App() { {isLoggedIn ? ( <VNInterface onLogout={logout} /> ) : ( - <LandingPage onLogin={login} /> + <LandingPage /> )} </> ) |
