1
0
Fork 0
freesewing/sites/shared/components/workbench/gist-as-json.js
2022-08-29 17:44:50 +02:00

9 lines
222 B
JavaScript

import Json from 'shared/components/json-highlight.js'
const GistAsJson = props => (
<div className="max-w-screen-xl m-auto">
<Json>{JSON.stringify(props.gist, null, 2)}</Json>
</div>
)
export default GistAsJson