mirror of https://github.com/buster-so/buster.git
Update page.tsx
This commit is contained in:
parent
a116ad525b
commit
51e863e9c1
|
@ -1,3 +1,4 @@
|
|||
import { DashboardController } from '@/controllers/DashboardController';
|
||||
import { AppAssetCheckLayout } from '@/layouts/AppAssetCheckLayout';
|
||||
|
||||
export default async function DashboardPage(props: { params: Promise<{ dashboardId: string }> }) {
|
||||
|
@ -7,7 +8,7 @@ export default async function DashboardPage(props: { params: Promise<{ dashboard
|
|||
|
||||
return (
|
||||
<AppAssetCheckLayout assetId={dashboardId} type="dashboard">
|
||||
<>TODO: Dashboard Page</>
|
||||
<DashboardController dashboardId={dashboardId} />
|
||||
</AppAssetCheckLayout>
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue