@cebus/react-card
v0.0.6
Published
The Card component displays content and presents actions to the user.
Downloads
16
Readme
Card
The Card component displays content and presents actions to the user.
Use
- Install the @cebus/react-card component.
Using NPM
npm install @cebus/react-card
Using Yarn
yarn add @cebus/react-card
Install the @cebus/react-provider and our theme tokens from @cebus/react-theme
Set up the provider in your app:
import { Provider } from '@cebus/react-provider'
import { webLightTheme } from '@cebus/react-theme'
const MyApp = () => {
return (
<Provider theme={webLightTheme}>
<Provider>
)
}
- Integrate the Card component.
import { Provider } from '@cebus/react-provider'
import { webLightTheme } from '@cebus/react-theme'
import { Card } from '@cebus/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.