/** * * Controller * */ import React from 'react'; import PropTypes from 'prop-types'; import { get, map } from 'lodash'; import InputCheckbox from 'components/InputCheckbox'; import styles from './styles.scss'; function Controller({ actions, name }) { return (
{name}
{map(actions, (action, key) => ( ))}
); } Controller.defaultProps = { actions: {}, name: '', }; Controller.propTypes = { actions: PropTypes.object, name: PropTypes.string, }; export default Controller;