Skip to content

Latest commit

 

History

History
41 lines (28 loc) · 844 Bytes

README.md

File metadata and controls

41 lines (28 loc) · 844 Bytes

React-Tocas

Tocas UI 2 components built with react

npm

npm

Demo & Docs

react-tocas.github.io

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>
);