guesstimate/client/src/components/DashboardPage/DashboardPage.tsx

13 lines
271 B
TypeScript

import React from 'react';
import { Page } from '../Page';
import { Dashboard } from './Dashboard';
export function DashboardPage() {
return (
<Page title="Tableau de bord">
<section className="mt-5">
<Dashboard />
</section>
</Page>
);
}