import PropTypes from 'prop-types'; import React from 'react'; const NewSimulationButtonComponent = ({onClick}) => (
New Simulation
); NewSimulationButtonComponent.propTypes = { onClick: PropTypes.func.isRequired, }; export default NewSimulationButtonComponent;