-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
26 lines (24 loc) · 1 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>L'Avenir du Travail</title>
<script src="https://unpkg.com/react@17/umd/react.development.js"></script>
<script src="https://unpkg.com/react-dom@17/umd/react-dom.development.js"></script>
<script src="https://unpkg.com/babel-standalone@6/babel.min.js"></script>
<script src="https://unpkg.com/recharts/umd/Recharts.js"></script>
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet">
</head>
<body>
<div id="root"></div>
<script type="text/babel">
// Copiez ici le code React du tableau de bord
// Assurez-vous de remplacer les imports par les composants directement utilisés
const Dashboard = () => {
// Le code du tableau de bord va ici
};
ReactDOM.render(<Dashboard />, document.getElementById('root'));
</script>
</body>
</html>