This repository was archived by the owner on May 16, 2024. It is now read-only.
  
  
  - 
                Notifications
    
You must be signed in to change notification settings  - Fork 4
 
Style options
        Dima Vyshniakov edited this page Oct 8, 2022 
        ·
        3 revisions
      
    Template uses vanilla CSS with autoprefixer enabled. To avoid class name collisions and reduce nesting, we are using css-modules. To make css-modules work, the stylesheet file name should have .module suffix.
import React from 'react';
import classes from './Component.module.css';
const Component = () => (
  <div className={classes.wrapper}>Component</div>
)CRA doesn't support style pre-processors, except SASS. But this doesn't mean, that we shouldn't use them. In order to add support for custom style processor without ejecting, we can use file watchers. File watchers will track changes in style files and compile them to vanilla CSS, consumed by CRA.
SASS/SCSS support comes “out of the box” in CRA. To enable it:
- Install 
node-sass 
yarn add node-sass --dev- Import SASS/SCSS files straight into Component.
 
import React from 'react';
import classes from './Component.module.scss'; // note the changed extension
const Component = () => (
  <div className={classes.wrapper}>Component</div>
)