import { Handle, Position } from "react-flow-renderer"; import { bottomBigStyle, topBigStyle } from "../styles"; type LedNodeProps = {}; const LedNode = (props: LedNodeProps) => { return (
Светодиод
); }; export default LedNode;