UNPKG

@wq/material-web

Version:

Web bindings for @wq/material

15 lines (12 loc) 276 B
import React from "react"; import PropTypes from "prop-types"; export default function FormatJson({ json }) { return ( <pre> <code>{JSON.stringify(json, null, 4)}</code> </pre> ); } FormatJson.propTypes = { json: PropTypes.object, };