import React from 'react' class ScraperInterface extends React.Component { render () { const { state, actions } = this.props return ( <div> <button onClick={actions.startScraping}>Start</button> </div> ) } } export default ScraperInterface