tldraw/packages/www/pages/shhh.tsx

14 lines
258 B
TypeScript
Raw Normal View History

2021-09-03 14:11:50 +00:00
import * as React from 'react'
import dynamic from 'next/dynamic'
const Editor = dynamic(() => import('../components/editor'), { ssr: false })
export function Shhh(): JSX.Element {
return (
<div>
<Editor />
</div>
)
}
export default Shhh