README
React generic data
A component to display a generic data object
Intent:
const myObject = {
a: 42,
b: "Foo",
c: [1, 1, 3, 5, 8],
d: { key: "value" },
};
const MyComponent = () => (
<GenericData data={myObject} />
);
React components to display a generic object
<script type="module">
import reactGenericData from 'https://cdn.skypack.dev/react-generic-data';
</script>
A component to display a generic data object
Intent:
const myObject = {
a: 42,
b: "Foo",
c: [1, 1, 3, 5, 8],
d: { key: "value" },
};
const MyComponent = () => (
<GenericData data={myObject} />
);