From e4c04f8c006ac80d58d7388b3daf2d35d7866d3d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A1ssia=20Sampaio?= <4005687+cassiasamp@users.noreply.github.com> Date: Mon, 16 Oct 2023 14:53:10 +0000 Subject: [PATCH] Update in step-1.mdx Adding detail to instructions about creating an empty app.scss file. The parts about recompiling starting on line 182 are still unclear as their meaning. So, I hope the creating of this empty file is the right way to go. --- src/pages/developing/react-tutorial/step-1.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pages/developing/react-tutorial/step-1.mdx b/src/pages/developing/react-tutorial/step-1.mdx index 6dc1cfc533d..9d3882fe8ec 100644 --- a/src/pages/developing/react-tutorial/step-1.mdx +++ b/src/pages/developing/react-tutorial/step-1.mdx @@ -184,8 +184,8 @@ re-compile. Once finished re-compiling the Carbon base styling is applied (IBM Plex Sans font family, font size, weight, colors, etc.) Re-compiling all of the Carbon Sass takes a while, even on fast systems. Let's -speed this up by moving our custom app Sass into a separate file, `app.scss` in -the 'src' directory, and import that from `App.js`. +speed this up by moving our custom app Sass into a separate file. Create an empty file `app.scss` in +the 'src' directory, and then import it in `App.js`. ```javascript path=src/App.js import './app.scss';