UNPKG
react-komik
Version:
latest (0.0.6)
0.0.6
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
ReactJS based comic strip creator
github.com/sonnylazuardi/react-komik
sonnylazuardi/react-komik
react-komik
/
src
/
components
/
Text.js
20 lines
(16 loc)
•
256 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import
React
, {
Component
}
from
'react'
;
class
Text
extends
Component
{
componentDidMount
(
) { }
render
(
) {
return
(
<
div
/>
); } };
Text
.
defaultProps
= {
text
:
''
,
textAlign
:
'center'
,
bottom
:
null
,
top
:
0
,
left
:
0
, };
export
default
Text
;