Skip to content
This repository has been archived by the owner on Apr 27, 2022. It is now read-only.

tigerspack/tigerspack

Repository files navigation

Please note: the project is under development

tigerspack

Tigerspack

The fastest UI framework for React

npm package Build Status Coverage Status npm downloads Dependabot Status GitHub license PRs Welcome Tested with jest

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.