UNPKG

react-json-tree

Version:
9 lines (8 loc) 268 B
import React from 'react'; import type { CommonInternalProps } from './types.js'; interface Props extends CommonInternalProps { data: unknown; nodeType: string; } export default function JSONObjectNode({ data, ...props }: Props): React.JSX.Element; export {};