import React from "react"; import { apiClient } from "../utils/httpClients"; import HomeCarousel from "../components/HomeCarousel"; export default class Welcome extends React.Component { constructor(props) { super(props); this.recentMatchesRequest = apiClient.get("/match/recent/15"); } 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

); } }