mirror of
https://github.com/khairul169/db-backup-tool.git
synced 2025-04-28 16:49:34 +07:00
12 lines
173 B
TypeScript
12 lines
173 B
TypeScript
import ServerSection from "./components/server-section";
|
|
|
|
const HomePage = () => {
|
|
return (
|
|
<div>
|
|
<ServerSection />
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default HomePage;
|