UNPKG
hbm-react-components
Version:
latest (3.0.0)
3.0.0
2.0.0
1.1.0
1.0.1
1.0.0
HBM React components
github.com/hbm/react-components
hbm/react-components
hbm-react-components
/
components
/
card
/
README.md
26 lines
(18 loc)
•
266 B
Markdown
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# Card
Card component.
## Usage
```js import React
from
'react'
; import {Card}
from
'react-components'
;
class
Card
extends
React
.
Component
{
render
() {
return
( <Card> <p> some content </p> </Card> ); } } ```