Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

react import css only for component

import styles from './styles/button.module.css';

const App = () => {
  return(
    <div>
      <button className={styles.button}>I'm a styled button</button>
    </div>    
  )
};
 
PREVIOUS NEXT
Tagged: #react #import #css #component
ADD COMMENT
Topic
Name
5+2 =