6 lines
142 B
TypeScript
6 lines
142 B
TypeScript
import * as React from 'react'
|
|
import Editor from './components/editor'
|
|
|
|
export default function Basic(): JSX.Element {
|
|
return <Editor />
|
|
}
|