This commit is contained in:
2025-01-03 13:58:22 +08:00
parent 31fd40f5d8
commit 362ab9b952
9 changed files with 573 additions and 5 deletions

View File

@@ -0,0 +1,6 @@
import { createRoot } from 'react-dom/client';
export const ReactApp = () => {
const root = createRoot(document.getElementById('app')!);
root.render(<div>Hello, World!</div>);
};