hugo-rc
v1.0.9
Published
Hugo react components
Downloads
28
Readme
Hugo React Components
Save my components build with React & tailwind.css
Install
# npm
$ npm install hugo-rc
# yarn
$ yarn add hugo-rcExample
import 'hugo-rc/tailwind.generated.css'
import React from 'react'
import { Button } from 'hugo-rc'
export const ClickMe = () => {
return (
<Button onClick={() => console.log('click me')}>
CLICK ME
</Button>
)
}