43bbcece7a
Backend: adds JDBC session support, login/status/logout endpoints, and new DTOs (AuthResponse, ConnectionStatusResponse, LoginResult). Frontend replaces the Vite boilerplate with a Dashboard, ServiceCard, and ConnectModal backed by a typed API client. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
11 lines
124 B
TypeScript
11 lines
124 B
TypeScript
|
|
import { Dashboard } from './components/Dashboard'
|
|
|
|
function App() {
|
|
return (
|
|
<Dashboard/>
|
|
)
|
|
}
|
|
|
|
export default App
|