rsnext/test/integration/css-fixtures/composes-external/pages/index.js

10 lines
200 B
JavaScript
Raw Normal View History

import { subClass } from './index.module.css'
export default function Home() {
return (
<div id="verify-yellow" className={subClass}>
This text should be yellow on blue.
</div>
)
}