1.0.1-beta • Published 1 year ago

@calizahq/react-components v1.0.1-beta

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

@calizahq/react-components

Caliza react components

Features

  • ES6 syntax, managed with Prettier + Eslint and Stylelint
  • React 17
  • Typescript
  • Emotion

Install

yarn add @calizahq/react-components
// or 
npm i @calizahq/react-components

Requirements

  • React 16.8

Usage

import { Button } from '@calizahq/react-components';
import { useState } from 'react';

export const App = () => {
  const [counter, setCounter] = useState(0)
  return (<div>
    Counter: {counter}
    <Button onClick={() => setCounter(counter + 1)} basic={true} outline={true}>+</Button>
    <Button onClick={() => setCounter(counter - 1)} basic={true} outline={true}>-</Button>
  </div>)
}
1.0.1-beta

1 year ago

5.89.3

1 year ago

4.88.3

1 year ago

3.87.3

1 year ago

2.86.3

1 year ago

1.85.3

1 year ago