ClawSec init

This commit is contained in:
David Abutbul
2026-02-05 21:58:23 +02:00
commit d3c703aea6
107 changed files with 19160 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
import React from 'react';
import ReactDOM from 'react-dom/client';
import App from './App';
const rootElement = document.getElementById('root');
if (!rootElement) {
throw new Error("Could not find root element to mount to");
}
const root = ReactDOM.createRoot(rootElement);
root.render(
<React.StrictMode>
<App />
</React.StrictMode>
);