tldraw/packages/www/pages/shhh.tsx

7 lines
188 B
TypeScript
Raw Normal View History

2021-09-04 12:02:13 +00:00
import dynamic from 'next/dynamic'
const Editor = dynamic(() => import('components/editor'), { ssr: false })
export default function Shhh(): JSX.Element {
return <Editor id="home" />
}