rsnext/test/integration/css-fixtures/catch-all-module/pages/[...post]/index.js

9 lines
199 B
JavaScript
Raw Normal View History

2020-04-27 16:35:10 +02:00
import styles1 from './index.module.css'
import styles2 from './55css.module.css'
export default () => (
2020-04-27 16:35:10 +02:00
<div className={styles1.home + ' ' + styles2.home} id="my-div">
hello world
</div>
)