feat: add react routing

This commit is contained in:
2025-07-07 20:15:14 +00:00
parent a4e6fa1125
commit 32b95bf21b
11 changed files with 246 additions and 64 deletions

9
src/pages/Home.tsx Normal file
View File

@@ -0,0 +1,9 @@
import React, {useState } from 'react';
const Home: React.FC = () => {
return (
<div>Hello World!</div>
);
};
export default Home;