storycleartrip
v0.1.20
Published
React Button component for npm
Downloads
53
Readme
storycleartrip
It is a simple button package with different types of button
Installation
storycleartrip requires Node.js, npm to run.
Install the package.
$ npm i storycleartripHow to use
col can take following arguments = success, error, warning, secondary
import React, { Component } from 'react';
import logo from './logo.svg';
import './App.css';
import {Button} from 'storycleartrip';
class App extends Component {
render() {
return (
<div>
<Button col="secondary">hello</Button>
</div>
);
}
}
export default App;
