MatchList.js 340 B

1234567891011121314151617
  1. import React from 'react'
  2. import MatchTable from './MatchTable'
  3. class MatchList extends React.Component {
  4. render () {
  5. const { state, actions } = this.props
  6. return (
  7. <div>
  8. <h1>Matchliste</h1>
  9. <MatchTable state={state} actions={actions} />
  10. </div>
  11. )
  12. }
  13. }
  14. export default MatchList