imrishabh18/example-dir3

A simple circuit with a 1kΩ resistor (R1) mounted in a 0402 package.

Usage: To use the component in a project: 1. Import the component: ```tsx import { SomeComponent } from "@tsci/AUTHOR.PACKAGE_NAME" ``` 2. Place the component in a circuit board: ```tsx <board> <SomeComponent name="U1" /> </board> ``` 3. Optionally, connect pins using traces or other components as needed: ```tsx <trace from={sel.U1.VCC} to="net.VCC" /> ``` The component supports standard layout props and has predefined pin labels that can be referenced.

Version
0.0.1
License
MIT
Stars
0

dist/index.js

PCBPCB preview for dist/index.js
SchematicSchematic preview for dist/index.js
import { jsx } from 'react/jsx-runtime';

var index_circuit = () => (jsx("board", { children: jsx("resistor", { name: "R1", resistance: "1k", footprint: "0402" }) }));

export { index_circuit as default };