🪂 Getting Started 🚀 🔥
Component library for React, based on Chiper's design system to build high quality web applications.
Prerequisites
- 📦 Node.js >=16
- 📦 Yarn >=1
Install
sb-web-chiper
should be installed as a dependency of your project .
yarn add sb-web-chiper
Usage
After the installation, it's time to import the package in your project:
import { useState } from "react";
import { TextField } from "sb-web-chiper";
const [text, setText] = useState("");
return (
<TextField
value={text}
placeholder="Placeholder email"
name="email-field"
onChange={(e) => setText(e.target.value)}
helperText="email@email.com"
/>
);
Contributing
This projects use some information (file names, commit messages) to automate several tasks. Because of this, some guidelines must be followed. click here.