Files
domain-watchdog/assets/pages/DashboardPage.tsx
2024-07-23 18:37:59 +02:00

13 lines
165 B
TypeScript

import React from 'react';
const DashboardPage = () => {
return (
<>
<p>Dashboard</p>
</>
);
};
export default DashboardPage;