The JsonRecordViewer component displays JSON data that is passed to it.
npm i @anakin-gbit/json-record-viewer<JsonRecordViewer
title="User Data"
data={{
name: 'John Doe',
age: 30,
dateRange: { start: new Date(), end: new Date().toISOString() },
location: { state: 'New York', city: 'New York' },
hobbies: ['Reading', 'Writing'],
}}
/>titlestring | Default: 'Record Viewer'dataobject | array | Required | Default: Default error message if no data is provided.