app.tsx 267 B

123456789101112
  1. /**
  2. * Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
  3. * SPDX-License-Identifier: MIT
  4. */
  5. import { createRoot } from 'react-dom/client';
  6. import { Editor } from './editor';
  7. const app = createRoot(document.getElementById('root')!);
  8. app.render(<Editor />);