@pongo-ui/react-components
v0.0.16
Published
Suite package for Pongo components.
Downloads
10
Readme
Components
This the entire suite package of Pongo components.
Use
- Install the @pongo-ui/react-components package.
Using NPM
npm install @pongo-ui/react-componentsUsing Yarn
yarn add @pongo-ui/react-components- Set up the provider in your app:
import { Provider } from '@pongo-ui/react-provider'
import { webLightTheme } from '@pongo-ui/react-components'
const MyApp = () => {
return (
<Provider theme={webLightTheme}>
<Provider>
)
}- Integrate your components.
import { Provider } from '@pongo-ui/react-provider'
import { webLightTheme, Button } from '@pongo-ui/react-components'
const MyApp = () => {
return (
<Provider theme={webLightTheme}>
<Button>Hello World</Button>
<Provider>
)
}