Hello I am new to MicroFront End in React JS. I am trying to work on SCSS with MicroFront End in React JS. I have 2 files.
1: _variable.scss 2:style.scss
below is my code which I want to work in my application.
//_variable.scss
$base-color: #c6538c;
:export{
baseColor:$base-color;
}
//style.scss
@import url('_variable.scss');
body{
background: $base-color;
}
I am assigning a background value to Body of the application. but it is not working.
Any help would be Great.
Thank you.