import React from "react"; import { Button, InputGroup, FormControl } from "react-bootstrap"; import "../styles/Dashboard.css"; import { apiClient } from "../utils/httpClients"; export default class Dashboard extends React.Component{ constructor(props) { super(props); this.state = { displayedMatches: [], }; } async getFirstName(){ let user = await apiClient.get("/user"); return user.firstName; } render() { return(

Welcome {this.getFirstName()}

); } }