ScraperInterface.js 280 B

12345678910111213141516
  1. import React from 'react'
  2. class ScraperInterface extends React.Component {
  3. render () {
  4. const { state, actions } = this.props
  5. return (
  6. <div>
  7. <button onClick={actions.startScraping}>Start</button>
  8. </div>
  9. )
  10. }
  11. }
  12. export default ScraperInterface