page.tsx 223 B

1234567891011
  1. /**
  2. * Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
  3. * SPDX-License-Identifier: MIT
  4. */
  5. 'use client';
  6. import { EditorClient } from '@editor/index';
  7. export default function Home() {
  8. return <EditorClient />;
  9. }