UNPKG
react-howl
Version:
alpha (0.0.2-9)
latest (0.0.1)
next (0.0.2-3)
0.0.2-9
0.0.2-8
0.0.2-7
0.0.2-6
0.0.2-5
0.0.2-4
0.0.2-3
0.0.2-2
0.0.2-1
0.0.2-0
0.0.1
A unified design system.
github.com/TaeKimJR/howl
TaeKimJR/howl
react-howl
/
src
/
components
/
Foo.jsx
17 lines
(13 loc)
•
273 B
JSX
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import
{ withStyles }
from
':styles'
;
import
Bar
from
':components/Bar'
;
export
default
withStyles
(
(
theme
) =>
({
container
: {
background
: theme.
colors
.
primary
.
color
, },
button
: {
background
:
'white'
, },
text
: {
background
:
'orange'
, }, }))(
Bar
);