@adoptaunabuelo/react-components
v0.3.43
Published
A simple, customizable, and accessible library of React components
Downloads
1,093
Readme
react-components
A simple, customizable, and accessible library of React components
Installation
React Components
React Components is available as an npm package.
npm:
npm install @adoptaunabuelo/react-components
yarn:
yarn add @adoptaunabuelo/react-components
Getting started with React Components
Here is an example of a basic app using React Components ProgressBar
component:
import React from 'react';
import { ProgressBar } from '@adoptaunabuelo/react-components';
function App() {
return (
<ProgressBar
maxValue={100}
minValue={0}
progress={40}
/>;
)
}
Watch out!
To be able to use Input type location, you will need to add this line to your project header:
<script src="https://maps.googleapis.com/maps/api/js?key=YOUR_API_KEY&libraries=places&language=es"/>
Please, replace YOUR_API_KEY
with your Google Maps API Key.
Storybook
You can checkout all the library Components and its docs in our storybook
Changelog
The changelog is regularly updated to reflect what's changed in each new release.
License
This project is licensed under the terms of the MIT license.