1234567891011121314151617 |
- import React from 'react'
- import MatchTable from './MatchTable'
- class MatchList extends React.Component {
- render () {
- const { state, actions } = this.props
- return (
- <div>
- <h1>Matchliste</h1>
- <MatchTable state={state} actions={actions} />
- </div>
- )
- }
- }
- export default MatchList
|