mirror of
https://gitlab.com/mbugroup/lti-web-client.git
synced 2026-06-11 02:51:49 +00:00
12 lines
297 B
TypeScript
12 lines
297 B
TypeScript
import { Dashboard as DashboardDailyChecklist } from '@/figma-make/components/pages/dashboard/Dashboard';
|
|
|
|
const DailyChecklistDashboardPage = () => {
|
|
return (
|
|
<section className='w-full'>
|
|
<DashboardDailyChecklist />
|
|
</section>
|
|
);
|
|
};
|
|
|
|
export default DailyChecklistDashboardPage;
|