You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

editor.tsx 179B

1234567891011
  1. import Canvas from "./canvas/canvas"
  2. import StatusBar from "./status-bar"
  3. export default function Editor() {
  4. return (
  5. <>
  6. <Canvas />
  7. <StatusBar />
  8. </>
  9. )
  10. }