UNPKG

gg-editor

Version:

A visual graph editor based on G6 and React

16 lines (12 loc) 260 B
import React from 'react'; class Command extends React.Component { render() { const { name, children } = this.props; return ( <div className="command" data-command={name}> {children} </div> ); } } export default Command;