rsnext/examples/with-typings-for-css-modules/pages/index.tsx
AJ Livingston cb312eb18b Examples: with-typings-for-css-modules (#5446)
* added example for using typings-for-css-modules-loader

* Update examples/with-typings-for-css-modules/README.md

* Update examples/with-typings-for-css-modules/README.md

* Update examples/with-typings-for-css-modules/next.config.js
2018-11-02 23:21:59 +01:00

8 lines
248 B
TypeScript

/* With CSS Modules */
import css from "../style.css"
export default () => (
<div className={css.example}>
<p className={css.exampleDescription}>Hello World, I am being styled using <strong>Typed</strong> CSS Modules!</p>
</div>
)