UNPKG

@taboo/cms

Version:

A node.js powered CMS (Content Management System) that is built on Koa web framework, uses mongoose for MongoDB connections and has admin dashboard built in React with Mobx and Rsuite. It can be used as React client side application, or as server side ren

13 lines (9 loc) 253 B
import React from 'react'; import PropTypes from 'prop-types'; const ObjectValue = ({ value, ...props }) => { return <div {...props}>{JSON.stringify(value)}</div>; }; ObjectValue.propTypes = { value: PropTypes.any, }; export default ObjectValue;