Merge version_1 into main #1

Merged
development merged 5 commits from version_1 into main 2026-01-16 11:56:25 +00:00
Showing only changes of commit f74cb2f7e8 - Show all commits

13
src/App.tsx Normal file
View File

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