mirror of
https://gitlab.com/mbugroup/lti-web-client.git
synced 2026-05-20 13:32:00 +00:00
10 lines
193 B
TypeScript
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;
|