From 0bdc168406e5d41df0cb11d0d4f71a66419ff7e9 Mon Sep 17 00:00:00 2001 From: Thad Guidry Date: Fri, 18 Feb 2022 10:03:49 -0600 Subject: [PATCH] make concise --- .../tutorial/01-introduction/05-nested-components/text.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/site/content/tutorial/01-introduction/05-nested-components/text.md b/site/content/tutorial/01-introduction/05-nested-components/text.md index e4fd035a60..20217c7ee3 100644 --- a/site/content/tutorial/01-introduction/05-nested-components/text.md +++ b/site/content/tutorial/01-introduction/05-nested-components/text.md @@ -4,10 +4,10 @@ title: Nested components It would be impractical to put your entire app in a single component. Instead, we can import components from other files and then use them as though we were including elements. -NOTE: Remember that in Svelte, an application is composed from one or more components and each component is a reusable self-contained block of code that encapsulates HTML, CSS, and JavaScript that belong together, written into a `.svelte` file. - We now present you 2 files in the editor on the right (upper bar) to click on, `App.svelte` and `Nested.svelte`. +Each component is a reusable self-contained block of code that encapsulates HTML, CSS, and JavaScript that belong together, written into a `.svelte` file. + Let's add a `