Add src/App.tsx

This commit is contained in:
2026-01-16 12:52:49 +00:00
parent e7d1a6233b
commit 7b34453687

13
src/App.tsx Normal file
View File

@@ -0,0 +1,13 @@
import React from 'react';
import HomePage from './components/HomePage';
import './App.css';
function App() {
return (
<div className="App">
<HomePage />
</div>
);
}
export default App;