Complete the code to import all Sass files from the folder using an index file.
@use '[1]';
The @use rule imports the components folder via its index file.
Complete the code to import the index file from the 'base' folder.
@use '[1]';
Using @use 'base'; imports the _index.scss file inside the base folder automatically.
Fix the error in the import statement to correctly use the index file from the 'theme' folder.
@use '[1]';
Simply using @use 'theme'; imports the index file inside the theme folder correctly.
Fill both blanks to create an index file that imports 'reset' and 'typography' partials.
@use '[1]'; @use '[2]';
The index file imports the partials _reset.scss and _typography.scss using @use.
Fill all three blanks to create an index file that imports 'colors', 'buttons', and 'layout' partials.
@use '[1]'; @use '[2]'; @use '[3]';
The index file imports the partials _colors.scss, _buttons.scss, and _layout.scss using @use.