React UI Library provides a set of accessible and customizable React components that make it easy to create websites.
npm install @rameshmane7218/react-ui-library
# Peer Dependencies - Also Required
npm install react react-dom styled-components @rameshmane7218/react-ui-library
# or
yarn add @rameshmane7218/react-ui-library
# Peer Dependencies - Also Required
yarn add react react-dom styled-components @rameshmane7218/react-ui-library
Here is a simple example of a basic app using React UI Library Button
component
import { Button } from '@rameshmane7218/react-ui-library';
function App() {
return <Button>Hello World</Button>;
}