Files
lti-web-client/src/app/dashboard/page.tsx
T
2025-10-02 12:00:18 +07:00

10 lines
193 B
TypeScript

const Dashboard = () => {
return (
<section className='w-full p-4'>
<h1 className='text-3xl font-bold text-primary'>Dashboard</h1>
</section>
);
};
export default Dashboard;