index.tsx 299 B

12345678910111213
  1. /** @jsx h */
  2. import { h } from "preact";
  3. import TopBar from "../islands/TopBar.tsx";
  4. import Editor from "../islands/Editor.tsx";
  5. export default function Home() {
  6. return (
  7. <div className="pd-page">
  8. <TopBar allowMode="both" />
  9. <Editor id="id" allowMode="both" />
  10. </div>
  11. );
  12. }