imrishabh18/test-pcm
This code defines a 10mm by 10mm electronic circuit board containing a single pin-row chip with an associated 3D CAD model of the "MachineContactMedium" component.
- Version
- 1.0.3
- License
- unset
- Stars
- 0
dist/index.js
PCB
Schematic
import { jsxs, jsx } from 'react/jsx-runtime';
import modelUrl from '././assets/MachineContactMedium-296a6e18.step';
const MyBoard = () => (jsxs("board", { width: "10mm", height: "10mm", children: [jsx("chip", { name: "U1", footprint: "pinrow1", cadModel: jsx("cadassembly", { children: jsx("cadmodel", { modelUrl: modelUrl }) }) }), jsx("chip", { name: "U1", footprint: "pinrow1", cadModel: jsx("cadassembly", { children: jsx("cadmodel", { modelUrl: modelUrl }) }) })] }));
export { MyBoard };