From 48c7d67c01f2431c4d72cfb958f2808de155eeab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Jona=C5=A1?= Date: Tue, 7 Nov 2023 09:26:12 +0100 Subject: [PATCH] docs: Update LAB 4 labs (#28) --- docs/lab4/LAB.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/lab4/LAB.md b/docs/lab4/LAB.md index f218f09..13f1622 100644 --- a/docs/lab4/LAB.md +++ b/docs/lab4/LAB.md @@ -20,7 +20,7 @@ Let's add a header to our app! Because headers can be shared with other componen 1. Stop the `nx serve`
-2. Generate a new empty React library called `ui-shared` in the `libs/store` folder. When asked, choose the `@nx/rollup` executor to build the library. +2. Generate a new empty React library called `store-ui-shared` in the `libs/store/ui-shared` folder. When asked, choose `jest` as test runner, the `rollup` as a bundler and `as-provided` naming convention.
🐳   Hint @@ -30,7 +30,7 @@ Let's add a header to our app! Because headers can be shared with other componen

-3. Generate a new React component, called `header`, inside the lib you just created +3. Generate a new React component, called `header`, inside the `src/lib` folder of the library you just created ⚠️  Play around with the generator options so that the generated component is automatically **exported** from the lib's module @@ -75,7 +75,7 @@ Let's add a header to our app! Because headers can be shared with other componen 🐳   Hint ```bash - nx dep-graph + nx graph ```