refactor: Convert main page to React

This commit is contained in:
2026-06-11 02:53:25 +00:00
parent e1efd7dd37
commit 26d7a4a7fc
5 changed files with 1393 additions and 1181 deletions

1387
src/CharacterSheet.jsx Normal file

File diff suppressed because it is too large Load Diff

5
src/sheet-main.jsx Normal file
View File

@@ -0,0 +1,5 @@
import React from 'react';
import { createRoot } from 'react-dom/client';
import CharacterSheet from './CharacterSheet';
createRoot(document.getElementById('root')).render(<CharacterSheet />);