feat(FE-40): create Dashboard page

This commit is contained in:
ValdiANS
2025-10-02 12:00:18 +07:00
parent 5c73f8f4af
commit 36b66d9b2f
+9
View File
@@ -0,0 +1,9 @@
const Dashboard = () => {
return (
<section className='w-full p-4'>
<h1 className='text-3xl font-bold text-primary'>Dashboard</h1>
</section>
);
};
export default Dashboard;