1.0.3 • Published 2 years ago
ui-debug v1.0.3
UI Debug
A React component that helps you reduce console log during debugging, displaying raw data without going through the rendering process.
This package is under development
Installation
yarn add ui-debug
npm install ui-debug
How to use
import Debugger from "ui-debug";
// some states
return (
<div>
<Debugger data={{ state1, state2, state3 }} />
</div>
);