mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
7b975d2156
- with css modules - with additional webpack config - with post css - without css modules Fix #3699
14 lines
304 B
JavaScript
14 lines
304 B
JavaScript
|
|
/* Without CSS Modules, maybe with PostCSS */
|
|
|
|
import '../style.css'
|
|
|
|
export default () => <div className='example'>O Hai world!</div>
|
|
|
|
/* With CSS Modules */
|
|
/*
|
|
import css from "../style.css"
|
|
|
|
export default () => <div className={css.example}>Hello World, I am being styled using CSS Modules!</div>
|
|
*/
|