react-tocas
v0.3.1
Published
Tocas UI 2 components built with react
Downloads
13
Readme
React-Tocas
Tocas UI 2 components built with react
Demo & Docs
Installation
npm install --save react-tocas
Usage
1. Import css file
<link rel="stylesheet" href="//cdn.rawgit.com/TeaMeow/TocasUI/master/dist/tocas.min.css">
2. Use react components
import Button from 'react-tocas/lib/Button';
// or this way:
// import { Button } from 'react-tocas';
let App = () => (
<div>
<Button info onClick={() => alert('World')}>
Hello
</Button>
</div>
);