react-obtree
v1.0.5
Published
react obTree
Downloads
10
Readme
About
A simple object tree viewer for React, display an object as an expandable component in React.
"use client";
import ObTree from 'react-obtree'
export default function App() {
let ob ={a:1};
return <ObTree label="ob1" data={ob} />;
}extra
<>prefix<ObTree label="ob1" data={ob}>suffix</ObTree>suffix2</>