1.1.5 • Published 1 year ago
@anil-sangwa/ui-components v1.1.5
@anil-sangwa/ui-components
A collection of reusable UI components for React.
Installation
Install the package using npm:
npm install @anil-sangwa/ui-componentsOr with yarn:
yarn add @anil-sangwa/ui-componentsUsage
Import and use the components in your React project:
import { Input } from '@anil-sangwa/ui-components';
function App() {
return (
<div>
<Input name="name" value={'Anil'} />
</div>
);
}
export default App;Available Components
Input
Description of what the component does.
Props
| Name | Type | Default | Description |
|---|---|---|---|
| name | string | "" | name of input element |
| value | string | "" | Value of input |
Development
Build
To build the project, run:
npm run buildLint
To lint the code, run:
npm run lintFormat
To format the code, run:
npm run formatContributing
Contributions are welcome! Please open an issue or submit a pull request.
License
ISC © Anil Sangwa
Issues
If you find a bug, please file an issue on the issue tracker.
Changelog
All notable changes to this project will be documented in this file.