11 lines
197 B
TypeScript
11 lines
197 B
TypeScript
|
|
import { MainLayout } from "layouts/main"
|
||
|
|
import { DashboardScreen } from "screens/dashboard"
|
||
|
|
|
||
|
|
export function App() {
|
||
|
|
return (
|
||
|
|
<MainLayout>
|
||
|
|
<DashboardScreen />
|
||
|
|
</MainLayout>
|
||
|
|
)
|
||
|
|
}
|