\\n
Please enter a patient ID and click Submit\\n
\\n
\\n
\\n \\n
\\n\"","import { Component } from '@angular/core';\nimport { PatientService } from './patient.service';\n\n@Component({\n selector: 'app-root',\n templateUrl: './app.component.html',\n styleUrls: ['./app.component.css']\n})\nexport class AppComponent {\n title = 'SmartFHIR';\n submittedPatientId: number = 2744010;\n patientId: number = 2744010;\n displayVerifiedConditions: boolean = true;\n submittedDisplayVerifiedConditions: boolean = true;\n\n onSubmit() {\n this.submittedPatientId = this.patientId\n this.submittedDisplayVerifiedConditions = this.displayVerifiedConditions;\n }\n}\n","import { BrowserModule } from '@angular/platform-browser';\nimport { NgModule } from '@angular/core';\nimport { HttpClientModule } from '@angular/common/http';\nimport { BrowserAnimationsModule } from '@angular/platform-browser/animations';\nimport { MatTableModule, MatSortModule } from '@angular/material';\nimport { FormsModule } from '@angular/forms';\n\nimport { AppComponent } from './app.component';\nimport { PatientTableComponent } from './patient-table/patient-table.component';\nimport { PatientService } from './patient.service';\nimport { PatientDetailsComponent } from './patient-details/patient-details.component';\n@NgModule({\n declarations: [\n AppComponent,\n PatientTableComponent,\n PatientDetailsComponent\n ],\n imports: [\n BrowserModule,\n BrowserAnimationsModule,\n HttpClientModule,\n MatTableModule,\n MatSortModule,\n FormsModule\n ],\n providers: [],\n bootstrap: [AppComponent]\n})\nexport class AppModule { }\n","module.exports = \"table {\\n border: none;\\n border-width: 0;\\n border-spacing: 0;\\n}\\nth, td {\\n margin: 5px 10px 5px 10px;\\n padding: 5px 10px 5px 10px;\\n}\\nth {\\n text-align: left;\\n background: #CCC;\\n}\\n.errorMessage {\\n color: red;\\n}\\n\"","module.exports = \"