import React from "react"; import { apiClient } from "../utils/httpClients"; import HomeCarousel from "../components/HomeCarousel"; import MatchInfoCardDisplay from "../components/MatchInfoCardDisplay"; export default class Welcome extends React.Component { constructor(props) { super(props); this.state = { displayedMatches: [], }; } async componentDidMount() { await this.latestMatches(); } async latestMatches() { let recentMatchesRes = await apiClient.get("/match/recent/15"); if (recentMatchesRes.status === 200) { this.setState({ displayedMatches: recentMatchesRes.data.recent }); } } render() { return (

Why?

Because you want to play the sports you love while meeting new friends!

{/* TODO: All this text should be expanded on. */}

Available Matches

); } }