import React from 'react'; import { Fixed, } from '../base/text'; const JSONTree = ({ data }) => ( { JSON.stringify(data, null, ' ') } ); export default JSONTree;