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

index.circuit.tsx

PCBPCB preview for index.circuit.tsx
SchematicSchematic preview for index.circuit.tsx
export default () => (
  <board>
    <resistor name="R1" resistance="1k" footprint="0402" />
  </board>
)