Merge version_1 into main #1

Merged
development merged 9 commits from version_1 into main 2026-01-21 11:38:19 +00:00
Showing only changes of commit f3f0e64846 - Show all commits

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;