@pongo-ui/react-card
v0.0.21
Published
The Card component displays content and presents actions to the user.
Downloads
6
Readme
Card
The Card component displays content and presents actions to the user.
Use
- Install the @pongo-ui/react-card component.
Using NPM
npm install @pongo-ui/react-card
Using Yarn
yarn add @pongo-ui/react-card
Install the @pongo-ui/react-provider and our theme tokens from @pongo-ui/react-theme
Set up the provider in your app:
import { Provider } from '@pongo-ui/react-provider'
import { webLightTheme } from '@pongo-ui/react-theme'
const MyApp = () => {
return (
<Provider theme={webLightTheme}>
<Provider>
)
}
- Integrate the Card component.
import { Provider } from '@pongo-ui/react-provider'
import { webLightTheme } from '@pongo-ui/react-theme'
import { Card } from '@pongo-ui/react-card'
const MyApp = () => {
return (
<Provider theme={webLightTheme}>
<Card>Hello World</Card>
<Provider>
)
}
API
To learn more about the Card API take a look at the Card Interface file.