render()

in src/app/AthenaNetCore/AthenaNetCore.WebApp/ClientApp/src/components/Hospitals.js [45:57]


    render() {
        let contents = this.state.isLoading
            ? <p><em>Loading...</em></p>
            : this.renderHospitalsTable(this.state.hospitals);

        return (
            <div>
                <h1 id="tabelLabel" >Hospitals Beds avaliability</h1>
                <p>This component demonstrates fetching COVID-19 data from the server that uses Amazon Athena to run SQL Standard query on S3 files from a Data Lake account. This Request run Athena Query and Wait for Results</p>
                {contents}
            </div>
        );
    }