Files
sound-analyze/services/frontend/src/app/App.tsx

10 lines
212 B
TypeScript

import { DashboardPage } from "../pages/dashboard/ui/DashboardPage";
export function App() {
return (
<div className="min-h-screen bg-background text-foreground">
<DashboardPage />
</div>
);
}