Please note: the project is under development
Installation
Install Tigerspack using yarn
:
yarn add tigerspack
Or npm
:
npm install tigerspack
Note: You can compare yarn
and npm
commands in the yarn docs, here.
Usage
Import the required components. For example for a button this is look like this:
import { Alert, Button } from 'tigerspack';
Then use it in the body of your application:
const App = () => (
<div>
<Alert>Press button please</Alert>
<Button>Button name</Button>
</div>
)
See the full list of components and their parameters in the documentation.