0.1.20 • Published 3 years ago

reaktus v0.1.20

Weekly downloads
63
License
ISC
Repository
github
Last release
3 years ago

Reaktus

A component library for React, by Caktus Group 🌵

🚀 Use

  1. In your project, install reaktus using npm. react, react-dom and styled-components are peer dependencies.
npm i reaktus styled-components
  1. Then import:
import React, { useState } from 'react';
import ReactDOM from 'react-dom';
import { Button, POSITIVE, Input } from 'reaktus';

function MyForm() {
    const [email, setEmail] = useState('');
    const [password, setPassword] = useState('');

    return (
        <form>
            <Input type='email' value={email} onChange={e => setEmail(e.target.value)} label="Email" />
            <Input type='password' value={password} onChange={e => setPassword(e.target.value)} label="Password" />
            <Button variant={POSITIVE} onClick={() => alert('Not really logging in.')}>Log in!</Button>
        </form>
    )
}

ReactDOM.render(<MyForm />, document.getElementById('root'));

🔥 Develop

  1. Clone the repo:
git clone https://github.com/caktus/reaktus.git
  1. Install dependencies:
cd reaktus
npm i
  1. Start styleguidist server:
npm run start
  1. Open browser to localhost:6060

🔨 Test

  1. Clone the repo:
git clone https://github.com/caktus/reaktus.git
  1. Install dependencies:
cd reaktus
npm i
  1. Run tests:
npm run test
0.1.20

3 years ago

0.1.19

3 years ago

0.1.18

3 years ago

0.1.17

3 years ago

0.1.15

3 years ago

0.1.16

3 years ago

0.1.14

3 years ago

0.1.13

3 years ago

0.1.10

3 years ago

0.1.11

3 years ago

0.1.12

3 years ago

0.1.9

3 years ago

0.1.8

3 years ago

0.1.7

3 years ago

0.1.4

4 years ago

0.1.6

4 years ago

0.1.5

4 years ago

0.1.3

4 years ago

0.1.2

4 years ago

0.1.1

4 years ago

0.1.0

4 years ago