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

8 lines
153 B
TypeScript
Raw Normal View History

2024-06-29 05:22:22 +00:00
import React from "react";
const Dashboard = () => {
return <div className="pt-2 text-center">Welcome to Daphnis</div>;
2024-06-29 05:22:22 +00:00
};
export default Dashboard;