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