Custom Input Component
A simple custom input component for React applications.
Installation
You can install the package using npm:
npm install react-mkx-components
Or using yarn:
yarn add react-mkx-components
Usage
import React, { useState } from "react";
import { Input } from "react-mkx-components";
const MyComponent = () => {
const [value, setValue] = useState("");
return (
<div>
<Input
value={inputValue}
setValue={setValue}
placeholder="Enter your text"
/>
</div>
);
};
export default MyComponent;
License
This project is licensed under the ISC License - see the LICENSE file for details.
Author : Mani Kant Sharma