mirror of
https://github.com/maelgangloff/domain-watchdog.git
synced 2025-12-29 16:15:04 +00:00
13 lines
165 B
TypeScript
13 lines
165 B
TypeScript
import React from 'react';
|
|
|
|
|
|
const DashboardPage = () => {
|
|
return (
|
|
<>
|
|
<p>Dashboard</p>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default DashboardPage;
|