Examples · TSCircuit · Open in CodeSandbox
Render Printed Circuit Boards w/ React
If you want to render to an image, check out circuit-to-png
npm install @tscircuit/pcb-viewerThere are two main ways to use the PCBViewer:
This approach allows you to declaratively define your circuit using React components:
import React from "react"
import { PCBViewer } from "@tscircuit/pcb-viewer"
export default () => {
  return (
    <div style={{ backgroundColor: "black" }}>
      <PCBViewer>
        <resistor footprint="0805" resistance="10k" />
        <capacitor footprint="0603" capacitance="100nF" />
      </PCBViewer>
    </div>
  )
}If you already have circuit JSON data, you can pass it directly:
import React from "react"
import { PCBViewer } from "@tscircuit/pcb-viewer"
const circuitJson = [
  {
    type: "pcb_component",
    pcb_component_id: "R1",
    center: { x: 0, y: 0 },
    // ... other component properties
  },
  // ... more elements
]
export default () => {
  return (
    <div style={{ backgroundColor: "black" }}>
      <PCBViewer circuitJson={circuitJson} />
    </div>
  )
}The PCBViewer component accepts these props:
- children: Circuit components to render
- circuitJson: Circuit JSON elements array (alternative to children)
- height: Height of viewer in pixels (default: 600)
- allowEditing: Enable/disable editing capabilities (default: true)
- editEvents: Array of edit events to apply
- onEditEventsChanged: Callback when edit events change
- initialState: Initial state for the viewer
- Interactive PCB viewing with pan and zoom
- Multiple layer support (top, bottom, inner layers)
- Component placement editing
- Trace routing
- DRC (Design Rule Check) visualization
- Measurement tools
