Some checks failed
Tests / Backend Tests (Python) (3.10) (push) Has been cancelled
Tests / Backend Tests (Python) (3.11) (push) Has been cancelled
Tests / Backend Tests (Python) (3.12) (push) Has been cancelled
Tests / Frontend Tests (JS) (push) Has been cancelled
Tests / Integration Tests (push) Has been cancelled
Tests / All Tests Passed (push) Has been cancelled
40 lines
1.2 KiB
HTML
40 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<link rel="icon" type="image/svg+xml" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='.9em' font-size='90'>📊</text></svg>" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Base de données - Explorateur de Schéma (CDN Mode)</title>
|
|
|
|
<script type="importmap">
|
|
{
|
|
"imports": {
|
|
"react": "https://esm.sh/react@18",
|
|
"react-dom": "https://esm.sh/react-dom@18",
|
|
"react-dom/client": "https://esm.sh/react-dom@18/client"
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<!-- Babel Standalone (Transpilation JSX) -->
|
|
<script src="https://unpkg.com/@babel/standalone/babel.min.js"></script>
|
|
</head>
|
|
<body style="margin: 0; background: #0d1117;">
|
|
<div id="root"></div>
|
|
|
|
<!-- Script principal utilisant Babel Standalone -->
|
|
<script type="text/babel" data-type="module">
|
|
import React from 'react';
|
|
import ReactDOM from 'react-dom/client';
|
|
import App from './database_schema_explorer.jsx';
|
|
|
|
const root = ReactDOM.createRoot(document.getElementById('root'));
|
|
root.render(
|
|
<React.StrictMode>
|
|
<App />
|
|
</React.StrictMode>
|
|
);
|
|
</script>
|
|
</body>
|
|
</html>
|