Skip to content

Commit

Permalink
fix(react-schema-editor): improve SchemaEditor types (#786)
Browse files Browse the repository at this point in the history
  • Loading branch information
kenve authored Apr 9, 2020
1 parent 56ef882 commit 944b6f7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/react-schema-editor/src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ import './index.css'
export const SchemaEditor: React.FC<{
className?: string
schema: any
showAntdComponents: boolean
showFusionComponents: boolean
customComponents: []
showAntdComponents?: boolean
showFusionComponents?: boolean
customComponents?: []
onChange: (schema: any) => void
}> = ({
className,
Expand Down

0 comments on commit 944b6f7

Please sign in to comment.