0.1.20 • Published 4 years ago
reaktus v0.1.20
Reaktus
A component library for React, by Caktus Group 🌵
🚀 Use
- In your project, install
reaktus
usingnpm
.react
,react-dom
andstyled-components
are peer dependencies.
npm i reaktus styled-components
- 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
- Clone the repo:
git clone https://github.com/caktus/reaktus.git
- Install dependencies:
cd reaktus
npm i
- Start
styleguidist
server:
npm run start
- Open browser to
localhost:6060
🔨 Test
- Clone the repo:
git clone https://github.com/caktus/reaktus.git
- Install dependencies:
cd reaktus
npm i
- Run tests:
npm run test
0.1.20
4 years ago
0.1.19
4 years ago
0.1.18
4 years ago
0.1.17
4 years ago
0.1.15
4 years ago
0.1.16
4 years ago
0.1.14
5 years ago
0.1.13
5 years ago
0.1.10
5 years ago
0.1.11
5 years ago
0.1.12
5 years ago
0.1.9
5 years ago
0.1.8
5 years ago
0.1.7
5 years ago
0.1.4
5 years ago
0.1.6
5 years ago
0.1.5
5 years ago
0.1.3
5 years ago
0.1.2
5 years ago
0.1.1
5 years ago
0.1.0
5 years ago