UNPKG
@softbind/react-slotty
Version:
latest (0.0.2)
0.0.2
0.0.1
React Slots
github.com/SoftBind/react-slotty
SoftBind/react-slotty
@softbind/react-slotty
/
examples
/
breadcrumb
/
moduleA
/
submoduleA
/
index.js
13 lines
(9 loc)
•
260 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
import
React
, {
Fragment
}
from
'react'
;
import
{
Text
}
from
'rebass'
;
import
Breadcrumbs
from
'../../slots'
;
export
default
() => (
<
Fragment
>
<
Breadcrumbs.Second.Provider
value
=
" -> SubmoduleA"
/>
<
Text
>
Test
</
Text
>
</
Fragment
>
);