1
0
Fork 0
mirror of https://github.com/terribleplan/next.js.git synced 2024-01-19 02:48:18 +00:00
next.js/examples/with-next-css/pages/index.js

14 lines
304 B
JavaScript
Raw Normal View History

/* 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>
*/