airtame-gooey-react
v0.5.0
Published
React component library compatible with airtame-gooey
Downloads
78
Readme
Airtame Gooey React is a React component library that works together with airtame/airtame-gooey
to provide Airtame's visual identity to your website.
Installation
yarn add airtame-gooey-react
or
npm install airtame-gooey-react
Usage
Import the component you need.
import Button from 'airtame-gooey-react/Button';
...
render () {
return (
<div>
// some form
<Button>Submit</Button>
</div>
)
}
or multiple components at a time
import { TextField, Button } from 'airtame-gooey-react';
Development
Check the parent project airtame/gooey
for development instructions.