1
0
Fork 0
freesewing/packages/freesewing.shared/components/workbench/menu/xray/path.js
2022-01-29 19:27:14 +01:00

14 lines
218 B
JavaScript

/*
* Things to add
*
* attributes
* ops
* render
*/
const XrayPath = props => {
return <pre>{JSON.stringify(props.gist.xray.parts[props.partName].paths[props.id], null ,2)}</pre>
}
export default XrayPath