imrishabh18/aaa
This code defines a 10mm x 10mm electronic board featuring a 1kΩ resistor (R1) and a 1000pF capacitor (C1) connected via their pins, using 0402 footprints.
- Version
- 0.0.1
- License
- unset
- Stars
- 0
dist/index.js
import { jsxs, jsx } from 'react/jsx-runtime';
var index = () => (jsxs("board", { width: "10mm", height: "10mm", children: [jsx("resistor", { resistance: "1k", footprint: "0402", name: "R1" }), jsx("capacitor", { capacitance: "1000pF", footprint: "0402", name: "C1", connections: { pin1: "R1.pin1" } })] }));
export { index as default };