mirror of
https://github.com/YouXam/claude-code-usage-dashboard.git
synced 2025-12-20 21:26:58 +08:00
7 lines
207 B
TypeScript
7 lines
207 B
TypeScript
import React from 'react';
|
|
import { createRoot } from 'react-dom/client';
|
|
import { App } from './App';
|
|
import './styles.css';
|
|
|
|
const root = createRoot(document.getElementById('root')!);
|
|
root.render(<App />); |