rsnext/test/integration/css-fixtures/global-and-module-ordering/pages/index.js
Scott Parker 67e6cae448
Correct Global and Local CSS Loading Order in Dev (#11901)
* Global styles now load before local in dev

* fix lint

* Adjust tests

Co-authored-by: Joe Haddad <joe.haddad@zeit.co>
2020-04-15 02:32:25 -04:00

9 lines
204 B
JavaScript

import styles from './index.module.css'
export default function Home() {
return (
<div id="blueText" className={`${styles.textModule} textGlobal`}>
This text should be blue.
</div>
)
}