Skip to content

Commit

Permalink
Expose wrapperProps
Browse files Browse the repository at this point in the history
  • Loading branch information
Viicos committed May 14, 2024
1 parent e3e8c04 commit 1fe443e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/jsonEditor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ interface JSONEditorProps {
showLines?: boolean;
}

type AvailableEditorProps = Pick<EditorProps, 'height'>;
type AvailableEditorProps = Pick<EditorProps, 'height' | 'wrapperProps'>;

export const JSONEditor: React.FC<JSONEditorProps & AvailableEditorProps> = ({
value = '',
Expand Down

0 comments on commit 1fe443e

Please sign in to comment.