index.tsx 404 B

12345678910111213141516
  1. /** @jsx h */
  2. import { h } from "preact";
  3. import { useState } from "preact/hooks";
  4. import TopBar from "../islands/TopBar.tsx";
  5. import Editor from "../islands/Editor.tsx";
  6. export default function Home() {
  7. const [content, setContent] = useState("##Title");
  8. return (
  9. <div className="pd-page">
  10. <TopBar allowMode="both" />
  11. <Editor content={content} allowMode="both" />
  12. </div>
  13. );
  14. }