ghostly-ui
v0.2.0
Published
A Shared React Component Library for Ghostery Products
Downloads
7
Readme
Ghostly UI
A Shared React Component Library for Ghostery Products
Demo
View the storybook online.
Or run it locally via:
yarn storybook
Install
yarn add ghostly-ui
Usage
import React, { Component } from "react";
import { Input } from "ghostly-ui";
class MyInput extends Component {
render() {
return (
<Input
id='email'
label='email'
placeholder='[email protected]'
/>
);
}
}