From d5fb8f25428d5cb11febc2a990a8d4e6be65ab4b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kamil=20Bregu=C5=82a?= Date: Fri, 18 Aug 2017 22:19:50 +0200 Subject: [PATCH] Fix example --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 59ff731..662b214 100644 --- a/README.md +++ b/README.md @@ -60,8 +60,8 @@ module: { ```js @Component({ selector: 'awesome-button', - template: 'button.template.html', - styles: ['button.style.css'] + templateUrl: 'button.template.html', + stylesUrls: ['button.style.css'] }) export class AwesomeButtonComponent { } ```