Drop trainvel backend, this is now a frontend-only app

This commit is contained in:
2024-11-10 16:34:18 +01:00
parent bc23d63c43
commit 036e1604bd
84 changed files with 22 additions and 7984 deletions

17
src/index.js Normal file
View File

@ -0,0 +1,17 @@
import React, {useMemo} from 'react';
import ReactDOM from 'react-dom/client';
import './index.css';
import reportWebVitals from './reportWebVitals';
import App from "./App";
const root = ReactDOM.createRoot(document.getElementById('root'));
root.render(
<React.StrictMode>
<App />
</React.StrictMode>
);
// If you want to start measuring performance in your app, pass a function
// to log results (for example: reportWebVitals(console.log))
// or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals
reportWebVitals();