Added some finishing touches here and there
This commit is contained in:
parent
ddd77d9f82
commit
656b1ba417
42 changed files with 9344 additions and 30 deletions
|
|
@ -2,6 +2,8 @@ import { APITester } from "../APITester";
|
|||
import "./index.css";
|
||||
import { useTranslation, withTranslation, Trans } from 'react-i18next';
|
||||
|
||||
import AppBar from './modules/MenuBar';
|
||||
|
||||
import logo from "./logo.svg";
|
||||
import reactLogo from "./react.svg";
|
||||
|
||||
|
|
@ -9,28 +11,18 @@ import Button from '@mui/material/Button';
|
|||
import Box from '@mui/material/Box';
|
||||
import Grid from '@mui/material/Grid';
|
||||
|
||||
import VehicleCard from "./modules/VehicleCards";
|
||||
import YourVehicleList from "./modules/YourVehicles";
|
||||
import MenuLanguages from "./modules/MenuLanguages";
|
||||
import StatisticsView from "./modules/StatisticsView"
|
||||
|
||||
export function App() {
|
||||
const { t, i18n } = useTranslation();
|
||||
return (
|
||||
<div className="app">
|
||||
<div className="logo-container">
|
||||
<img src={logo} alt="Bun Logo" className="logo bun-logo" />
|
||||
<img src={reactLogo} alt="React Logo" className="logo react-logo" />
|
||||
</div>
|
||||
|
||||
<h1>Bun + React | GarageApp</h1>
|
||||
<p>
|
||||
Edit <code>src/App.tsx</code> and save to test HMR
|
||||
</p>
|
||||
|
||||
<h1>{t ('statistics')}</h1>
|
||||
|
||||
<AppBar position="static">
|
||||
</AppBar>
|
||||
<StatisticsView />
|
||||
<YourVehicleList></YourVehicleList>
|
||||
|
||||
<h1>test</h1>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue