idev-react-components-lib
TypeScript icon, indicating that this package has built-in type declarations

0.0.6 • Public • Published

Idev React Components Library

This package allows you to create a react components, such as buttons, forms, and many more....

NPM package

https://www.npmjs.com/package/idev-react-components-lib

Doc

Install Package

npm i idev-react-components-lib

Components List

1. IdevButtons

2. IdevForm

3. IdevInputGroup

4. IdevInputs

5. IdevLabels

6. IdevTextArea

Usages

import React from "react";
import { IdevForm, IdevInputGroup, IdevInputs, IdevLabels, IdevButtons } from "idev-react-components-lib";

export default function Home() {
  const [fromData, setFormData] = React.useState({
    name: "",
    email: "",
    message: "",
  })

  const handleChange = (e: React.ChangeEvent<HTMLInputElement>) => {
    setFormData({
      ...fromData,
     [e.target.name]: e.target.value
    })
  }

  const handleSubmit = (e: React.FormEvent) => {
    e.preventDefault()
    console.log(fromData)
  }

  return (
    <main className="flex min-h-screen flex-col items-center justify-between p-24">
      <Nav listItems={menuItems} />
      <IdevForm onSubmit={handleSubmit}>
        <IdevInputGroup WrapperClass="flex flex-wrap">
          <IdevLabels className="text-left">Full Name</IdevLabels>
          <IdevInputs inputTypes={
            {
              name: 'fullName',
              type: 'text',
              value: fromData.name,
              onChange: (e) => {
                handleChange(e)
              }
            }
          }/>
        </IdevInputGroup>
        <IdevButtons className='p-5 bg-slate-400 text-white'>Hit Submit</IdevButtons>
      </IdevForm>
    </main>
  );
}

License

MIT

Package Sidebar

Install

npm i idev-react-components-lib

Weekly Downloads

1

Version

0.0.6

License

MIT

Unpacked Size

559 kB

Total Files

41

Last publish

Collaborators

  • makeit1932