Files
react-native-debug-console/packages/lib/src/components/JSON/index.js

14 lines
194 B
JavaScript

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