feat: setup initial theme and project structure

This commit is contained in:
2025-09-14 20:18:29 -05:00
parent 8f19109392
commit ebb211abdb
35 changed files with 4686 additions and 0 deletions

11
src/main.jsx Normal file
View File

@@ -0,0 +1,11 @@
import { StrictMode } from 'react'
import { createRoot } from 'react-dom/client'
import 'campfire-logs-dashboard/dist/css/campfire-logs-dashboard.css';
import './index.css'
import App from './App.jsx'
createRoot(document.getElementById('root')).render(
<StrictMode>
<App />
</StrictMode>,
)