1
0

feat: initialize Electron dashboard with basic structure

This commit is contained in:
2025-07-18 08:51:25 +02:00
parent c996bebee6
commit d3f733638e
19 changed files with 5823 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
<!doctype html>
<html>
<head>
<meta charset="UTF-8" />
<title>OpenWall</title>
<meta
http-equiv="Content-Security-Policy"
content="default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline'; img-src 'self' data:"
/>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>

View File

@@ -0,0 +1,9 @@
const App = () => {
return (
<>
<h1>Not implemented yet</h1>
</>
)
}
export default App;

View File

@@ -0,0 +1,9 @@
import { StrictMode } from 'react'
import { createRoot } from 'react-dom/client'
import App from './App'
createRoot(document.getElementById('root')).render(
<StrictMode>
<App />
</StrictMode>
)