Add src/App.tsx

This commit is contained in:
2026-01-21 11:38:11 +00:00
parent 3962b75322
commit f3f0e64846

13
src/App.tsx Normal file
View File

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