0.0.3 • Published 10 months ago

react-custom-select3 v0.0.3

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

React Custom Select3

A custom select component for React.

Description

React Custom Select3 is a highly customizable and easy-to-use select component for React applications. It provides a flexible and user-friendly interface for selecting options from a dropdown list.

Installation

To install the package, run:

npm install react-custom-select3

or with yarn:

yarn add react-custom-select3

Usage

Here is a basic example of how to use the React Custom Select3 component:

import React from 'react';
import ReactDOM from 'react-dom';
import { SelectDropdown } from 'react-custom-select3';
import 'react-custom-select3/dist/react-custom-select3.css';

const options = [
  { value: 'option1', label: 'Option 1' },
  { value: 'option2', label: 'Option 2' },
  { value: 'option3', label: 'Option 3' },
];

function App() {
  return (
    <div>
      <h1>React Custom Select3 Example</h1>
      <SelectDropdown optionLabel="Select" multiple options={options} />
    </div>
  );
}

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

Running the Project

To run the project locally, follow these steps:

  1. Clone the repository:
git clone https://github.com/hamdankun/react-custom-select3.git
  1. Navigate to the project directory:
cd react-custom-select3
  1. Install the dependencies:
npm install
  1. Start the development server:
npm run storybook
  1. Open your browser and go to http://localhost:6006 to see the project running.

Contributing

Contributions are welcome! Please open an issue or submit a pull request for any bugs or feature requests.

License

This project is licensed under the MIT License.

0.0.3

10 months ago

0.0.2

10 months ago

0.0.1

10 months ago

1.0.10

10 months ago

1.0.9

10 months ago

1.0.8

10 months ago

1.0.7

10 months ago

1.0.6

10 months ago

1.0.5

10 months ago

1.0.4

10 months ago

1.0.3

10 months ago

1.0.2

10 months ago

1.0.1

10 months ago

1.0.0

10 months ago