1
0
Fork 0
freesewing/packages/freesewing.shared/components/workbench/menu/xray/path.js

15 lines
218 B
JavaScript
Raw Normal View History

2022-01-29 19:27:14 +01:00
/*
* Things to add
*
* attributes
* ops
* render
*/
2022-01-29 18:24:36 +01:00
2022-01-29 19:27:14 +01:00
const XrayPath = props => {
return <pre>{JSON.stringify(props.gist.xray.parts[props.partName].paths[props.id], null ,2)}</pre>
2022-01-29 18:24:36 +01:00
}
export default XrayPath