It should render the same as it did in the previous lesson because even though you added a new component, you haven't included it in any of the app's templates, yet.
<code-exampleheader="Import HousingLocationComponent in src/app/home/home.component.ts"path="first-app-lesson-03/src/app/home/home.component.ts"region="import-housingLocation"></code-example>
1. Next update the `imports` property of the `@Component` metadata by adding `HousingLocationComponent` to the array.
<code-exampleheader="Add HousingLocationComponent to imports array in src/app/home/home.component.ts"path="first-app-lesson-03/src/app/home/home.component.ts"region="add-housingLocation-to-array"></code-example>
1. Now the component is ready for use in the template for the `HomeComponent`. Update the `template` property of the `@Component` metadata to include a reference to the `<app-housing-location>` tag.
<code-exampleheader="Add housing location to the component template in src/app/home/home.component.ts"path="first-app-lesson-03/src/app/home/home.component.ts"region="add-housingLocation-to-template"></code-example>
<code-exampleheader="Add CSS styles to housing location to the component in src/app/housing-location/housing-location.component.css"path="first-app-lesson-03/src/app/housing-location/housing-location.component.css"></code-example>
1. Save your code, return to the browser and confirm that the app builds without error. You should find the message "housing-location works!" rendered to the screen.Correct any errors before you continue to the next step.
<sectionclass="lightbox">
<imgalt="browser frame of homes-app displaying logo, filter text input box and search button and the message 'housing-location works!"src="generated/images/guide/faa/homes-app-lesson-03-step-2.png">