daphnis/app/(authenticated)/home/page.tsx

8 lines
115 B
TypeScript
Raw Normal View History

2024-06-29 05:22:22 +00:00
import React from "react";
const Dashboard = () => {
return <div>Dashboard</div>;
};
export default Dashboard;