This step adds the properties to the interface that your app needs to represent a housing location.
1. In the **Terminal** pane of your IDE, start the `ng serve` command, if it isn't already running, to build the app and serve it to `http://localhost:4200`.
1. In the **Edit** pane of your IDE, open the `src/app/housinglocation.ts` file.
In this step, you create an instance of the interface and assign some sample data to it.
You won't see this sample data appear in your app yet.
There are a few more lessons to complete before that happens.
1. In the **Terminal** pane of your IDE, run the `ng serve` command, if it isn't already running, to build the app and serve your app to `http://localhost:4200`.
1. In the **Edit** pane of your IDE, open `src/app/home/home.component.ts`.
1. In `src/app/home/home.component.ts`, add this import statement after the existing `import` statements so that `HomeComponent` can use the new interface.
<code-exampleheader="Import HomeComponent in src/app/home/home.component.ts"path="first-app-lesson-04/src/app/home/home.component.ts"region="housing-location-import"></code-example>
1. In `src/app/home/home.component.ts`, replace the empty `export class HomeComponent {}` definition with this code to create a single instance of the new interface in the component.
<code-exampleheader="Add sample data to src/app/home/home.component.ts"path="first-app-lesson-04/src/app/home/home.component.ts"region="only-house"></code-example>
By adding the `housingLocation` property of type `HousingLocation` to the `HomeComponent` class, we're able to confirm that the data matches the description of the interface. If the data didn't satisfy the description of the interface, the IDE has enough information to give us helpful errors.
1. Save your changes and confirm the app does not have any errors. Open the browser and confirm that your application still displays the message "housing-location works!"
<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">