From 60e42a75a9e562c46246a95734954e123968a5ee Mon Sep 17 00:00:00 2001 From: rix1 Date: Sat, 11 Nov 2023 19:58:21 +0100 Subject: [PATCH] Update css_and_js.mdx Fix typo --- docs/content/guide/css_and_js.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/guide/css_and_js.mdx b/docs/content/guide/css_and_js.mdx index 3900bf1..af4de4e 100644 --- a/docs/content/guide/css_and_js.mdx +++ b/docs/content/guide/css_and_js.mdx @@ -2,7 +2,7 @@ Your components might need custom styles or custom JavaScript for many reasons. Instead of using global stylesheet or scripts files, writing assets per individual component has several advantages: -- **Portability**: You can copy a component from one project to another kmowing it will keep working as expected. +- **Portability**: You can copy a component from one project to another knowing it will keep working as expected. - **Performance**: On each page, only load the css and js that you need. Also, the browser will already have cached the assets of the components for other pages that use them. - **Simple testing**: You can test the JS of a component indepently from others.