1
0
Fork 0
freesewing/sites/shared/components/workbench/yaml.js
2022-06-17 12:02:09 +02:00

9 lines
213 B
JavaScript

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