UNPKG
doly
Version:
latest (1.1.1)
1.1.1
1.1.0
1.0.5
1.0.3
1.0.2
0.0.0
doly ui components
github.com/doly-dev/doly
doly-dev/doly
doly
/
examples
/
portal02-example.js
12 lines
(11 loc)
•
269 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
import
React
from
'react'
;
import
PortalTest
from
'../components/portal02'
;
export
default
class
PortalExample
extends
React.Component
{
render
(
){
return
(
<
PortalTest
>
<
div
>
test
</
div
>
</
PortalTest
>
) } }