tinsangbeeping/Sub_cor1
This code defines a simple electronic circuit with a resistor and capacitor on a small PCB, and a subcircuit implementing a debounced switch with an LED indicator connected via resistors and traces.
- Version
- 0.0.1
- License
- unset
- Stars
- 0
dist/index.cjs
'use strict';
var jsxRuntime = require('react/jsx-runtime');
var index = () => (jsxRuntime.jsxs("board", { width: "10mm", height: "10mm", children: [jsxRuntime.jsx("resistor", { resistance: "1k", footprint: "0402", name: "R1" }), jsxRuntime.jsx("capacitor", { capacitance: "1000pF", footprint: "0402", name: "C1", connections: { pin1: "R1.pin1" } })] }));
module.exports = index;