React Awesome Components
React Awesome Components is a collection of modern, reusable and well-tested React components that can be utilized across all of our different applications.
Quick Start
Install
To start using React Awesome Components
, you need to install the @react-awesome/components
library. In your project directory, run
the following command to install the dependencies:
npm i @react-awesome/components
Ready to go
Now, you can start to import the component you need:
home.jsx
import { PhoneInput } from '@react-awesome/components';
export const HomePage = () => <PhoneInput />;