running-dashboard / src /index.js
lewtun's picture
lewtun HF Staff
Add running dashboard with weekly tracking, 10% rule recommendations, and charts
3d4aa49
raw
history blame contribute delete
254 Bytes
import React from 'react';
import ReactDOM from 'react-dom/client';
import './index.css';
import App from './App';
const root = ReactDOM.createRoot(document.getElementById('root'));
root.render(
<React.StrictMode>
<App />
</React.StrictMode>
);