File tree Expand file tree Collapse file tree 5 files changed +11
-11
lines changed
src/components/CodeEditor Expand file tree Collapse file tree 5 files changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -17,16 +17,16 @@ class MarkdownEditor extends React.Component {
17
17
render ( ) {
18
18
return (
19
19
< div className = "MarkdownEditor" >
20
- < h3 > Input </ h3 >
20
+ < h3 > Đầu vào </ h3 >
21
21
< label htmlFor = "markdown-content" >
22
- Enter some markdown
22
+ Nhập dưới dạng markdown
23
23
</ label >
24
24
< textarea
25
25
id = "markdown-content"
26
26
onChange = { this . handleChange }
27
27
defaultValue = { this . state . value }
28
28
/>
29
- < h3 > Output </ h3 >
29
+ < h3 > Kết Quả </ h3 >
30
30
< div
31
31
className = "content"
32
32
dangerouslySetInnerHTML = { this . getRawMarkup ( ) }
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ class HelloMessage extends React.Component {
2
2
render ( ) {
3
3
return (
4
4
< div >
5
- Hello { this . props . name }
5
+ Xin chào { this . props . name }
6
6
</ div >
7
7
) ;
8
8
}
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ class Timer extends React.Component {
21
21
render ( ) {
22
22
return (
23
23
< div >
24
- Seconds : { this . state . seconds }
24
+ Giây : { this . state . seconds }
25
25
</ div >
26
26
) ;
27
27
}
@@ -30,4 +30,4 @@ class Timer extends React.Component {
30
30
ReactDOM . render (
31
31
< Timer /> ,
32
32
document . getElementById ( 'timer-example' )
33
- ) ;
33
+ ) ;
Original file line number Diff line number Diff line change @@ -9,19 +9,19 @@ class TodoApp extends React.Component {
9
9
render ( ) {
10
10
return (
11
11
< div >
12
- < h3 > TODO </ h3 >
12
+ < h3 > Danh sách công việc </ h3 >
13
13
< TodoList items = { this . state . items } />
14
14
< form onSubmit = { this . handleSubmit } >
15
15
< label htmlFor = "new-todo" >
16
- What needs to be done ?
16
+ Bạn cần làm gì ?
17
17
</ label >
18
18
< input
19
19
id = "new-todo"
20
20
onChange = { this . handleChange }
21
21
value = { this . state . text }
22
22
/>
23
23
< button >
24
- Add #{ this . state . items . length + 1 }
24
+ Thêm #{ this . state . items . length + 1 }
25
25
</ button >
26
26
</ form >
27
27
</ div >
Original file line number Diff line number Diff line change @@ -105,7 +105,7 @@ class CodeEditor extends Component {
105
105
color : colors . white ,
106
106
} } >
107
107
< MetaTitle onDark = { true } >
108
- Live JSX Editor
108
+ Trình Chỉnh Sửa JSX
109
109
< label
110
110
css = { {
111
111
fontSize : 14 ,
@@ -206,7 +206,7 @@ class CodeEditor extends Component {
206
206
padding : '0 10px' ,
207
207
backgroundColor : colors . divider ,
208
208
} } >
209
- < MetaTitle > Result </ MetaTitle >
209
+ < MetaTitle > Kết quả </ MetaTitle >
210
210
</ div >
211
211
< div
212
212
id = { containerNodeID }
You can’t perform that action at this time.
0 commit comments