3.30.2 • Published 10 months ago

@chiper-inc2/sb-web-chiper v3.30.2

Weekly downloads
-
License
MIT
Repository
github
Last release
10 months ago

🪂 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.