hugo-rc
v1.0.9
Published
Hugo react components
Downloads
45
Readme
Hugo React Components
Save my components build with React & tailwind.css
Install
# npm
$ npm install hugo-rc
# yarn
$ yarn add hugo-rc
Example
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>
)
}