removed failing react-native-json-tree

This commit is contained in:
2021-04-09 14:03:14 +02:00
parent ff8b95ce45
commit 52a6627e6b
4 changed files with 15 additions and 3 deletions

View File

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