Files
ThreatHunt/frontend/src/main.jsx
mblanke 99d3fbc2b3 post CLAUDE updates
had CLAUDE AI made suggestions and edits to code.
added all route and moves some requirements around.
2025-06-17 06:13:59 -04:00

11 lines
234 B
JavaScript

import { StrictMode } from 'react';
import { createRoot } from 'react-dom/client';
import App from './App.jsx';
import './index.css';
createRoot(document.getElementById('root')).render(
<StrictMode>
<App />
</StrictMode>,
);