10 lines
212 B
TypeScript
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>
|
|
);
|
|
}
|