@navelpluisje/pcb-components
Version:
A library with native components. They are all pcb components, like a dip-switch, resitor etc.
16 lines (13 loc) • 293 B
JavaScript
import { dipswitch } from './dip-switch/dip-switch';
import { trimmer } from './trimmer/trimmer';
import { resistor } from './resistor/resistor';
import { ic } from './ic/ic';
import { led } from './led/led';
export {
dipswitch,
trimmer,
resistor,
ic,
led,
};
export default null;