import { Handle, Position } from "react-flow-renderer"; import { bottomBigStyle, bottomSmallStyle, topDoubleLeftStyle, topDoubleRightStyle, } from "../styles"; type MathNodeProps = {}; const MathNode = (props: MathNodeProps) => { return (
Математика
); }; export default MathNode;