index.js 260 B

123456789101112131415
  1. import React from 'react';
  2. class Command extends React.Component {
  3. render() {
  4. const { name, children } = this.props;
  5. return (
  6. <div className="command" data-command={name}>
  7. {children}
  8. </div>
  9. );
  10. }
  11. }
  12. export default Command;