@dhruv-m-patel/react-components
A library of React components for frontend projects
Using this package
-
Install this package
npm i @dhruv-m-patel/react-components #OR yarn add @dhruv-m-patel/react-components --dev
-
Import package components and integrate them in your code
import * as React from 'react'; import { Text } from '@dhruv-m-patel/react-components'; export default function MyAwesomeComponent({ name }) { const shouldPrintName = !!name?.length; return ( <Text> Hello {shouldPrintName ? `, ${name}` : 'World'}! </Text> ); }