forked from PolarisPyra/daphnis
8 lines
153 B
TypeScript
8 lines
153 B
TypeScript
import React from "react";
|
|
|
|
const Dashboard = () => {
|
|
return <div className="pt-2 text-center">Welcome to Daphnis</div>;
|
|
};
|
|
|
|
export default Dashboard;
|