StartPage.js 689 B

1234567891011121314151617181920
  1. import React from 'react'
  2. import { PlayerForm } from '../../playerList/components'
  3. import { MatchForm } from '../../calendar/components'
  4. import { ScraperInterface } from '../../scraper/components'
  5. class StartPage extends React.Component {
  6. render () {
  7. return (
  8. <div>
  9. <h1>SZTM Planungshelfer</h1>
  10. <p>Willkommen beim SZTM Planungshelfer</p>
  11. <PlayerForm state={this.props.playerList} actions={this.props.playerListActions} />
  12. <MatchForm state={this.props.calendar} actions={this.props.calendarActions} />
  13. <ScraperInterface state={this.props.scraper} actions={this.props.scraperActions} />
  14. </div>
  15. )
  16. }
  17. }
  18. export default StartPage