UNPKG
sh-modal-dialog
Version:
latest (0.1.6)
0.1.6
0.1.5
0.1.4
0.1.3
0.1.2
0.1.1
0.1.0
0.0.1
Modal Dialog box for React
github.com/SuperheroUI/shModalDialog
SuperheroUI/shModalDialog
sh-modal-dialog
/
src
/
test-content.js
18 lines
(15 loc)
•
327 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import
React
, {
Component
}
from
'react'
;
class
TestContent
extends
Component
{
constructor
(
props
) {
super
(props);
this
.
state
= {}; }
render
(
) {
return
(
<
div
className
=
"test-content"
>
test content
</
div
>
) } }
export
default
TestContent
;