rsnext/examples/with-stitches/pages/index.js
Christian Alfoni cc9e2526e4
With stitches (#12677)
split into two examples
2020-05-20 06:22:50 +00:00

6 lines
150 B
JavaScript

import { useCss } from '../css'
export default function Home() {
const css = useCss()
return <h1 className={css.color('RED')}>Hello world</h1>
}