tigerspack
v0.2.0
Published
The fastest UI framework for React
Downloads
96
Maintainers
Readme
Please note: the project is under development
Tigerspack
The fastest UI framework for React
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.