From 9b5146f6cab8be335b1e4607436f4ae7afe0c92b Mon Sep 17 00:00:00 2001 From: oseer williams Date: Tue, 7 Nov 2023 16:08:16 -0500 Subject: [PATCH] docs(components): update documentation (#2072) --- libs/components/README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/libs/components/README.md b/libs/components/README.md index b376dcc2c4..e7c5594bad 100644 --- a/libs/components/README.md +++ b/libs/components/README.md @@ -10,11 +10,11 @@ All components are published in npm and available on any CDN that host npm modul ```html - + - + ``` @@ -33,11 +33,11 @@ once the script is loaded, its now possible to start using our custom HTML eleme - + - Hello world + ``` @@ -69,7 +69,7 @@ import '@covalent/components/button'; @component({ standalone: true, schemas: [CUSTOM_ELEMENTS_SCHEMA], - template: 'Hello world', + template: '', }) export class AppComponent {} ```