initial-commit

This commit is contained in:
GotthardG
2024-10-24 10:31:09 +02:00
parent fbc9eb1873
commit b6611fdac0
55 changed files with 12587 additions and 0 deletions

12
frontend/src/App.tsx Normal file
View File

@ -0,0 +1,12 @@
import React from 'react';
import ResponsiveAppBar from './components/ResponsiveAppBar.tsx';
const App: React.FC = () => {
return (
<div>
<ResponsiveAppBar />
</div>
);
};
export default App;