DefinitelyTyped/types/react-json-pretty/react-json-pretty-tests.tsx

18 lines
379 B
TypeScript

import * as React from "react";
import JSONPretty = require("react-json-pretty");
export class Test extends React.Component {
render() {
const json = {
foo: "bar"
};
return (
<div>
<JSONPretty json={ json } />
<JSONPretty json={ JSON.stringify(json) } />
</div>
);
}
}