From d21c7a4578a20325f56a47f692cf733f235a9d98 Mon Sep 17 00:00:00 2001 From: Matt Huntington Date: Tue, 20 Jun 2017 17:07:52 -0400 Subject: [PATCH] Clean up app.component.html --- starwars/src/app/app.component.html | 21 +-------------------- use_an_api.md | 9 +++++++++ 2 files changed, 10 insertions(+), 20 deletions(-) diff --git a/starwars/src/app/app.component.html b/starwars/src/app/app.component.html index b41bbe4..f067f97 100644 --- a/starwars/src/app/app.component.html +++ b/starwars/src/app/app.component.html @@ -1,20 +1 @@ - -
-

- Welcome to {{title}}!! -

- -
-

Here are some links to help you start:

- - +

Star Wars Character Search App

diff --git a/use_an_api.md b/use_an_api.md index 415da6e..8a5c5a0 100644 --- a/use_an_api.md +++ b/use_an_api.md @@ -4,6 +4,7 @@ 1. Create a new app 1. Generate a new component +1. Clean up app.component.html ## Create a new app @@ -18,3 +19,11 @@ ng serve --open ``` ng generate component search ``` + +## Clean up app.component.html + +Set `src/app/app.component.html` contents to: + +```html +

Star Wars Character Search App

+```