File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -35,10 +35,10 @@ function WelcomeDialog() {
35
35
return (
36
36
<FancyBorder color="blue">
37
37
<h1 className="Dialog-title">
38
- Bienvenidos
38
+ Welcome
39
39
</h1>
40
40
<p className="Dialog-message">
41
- ¡Gracias por visitar nuestra nave espacial !
41
+ Thank you for visiting our spacecraft !
42
42
</p>
43
43
</FancyBorder>
44
44
);
@@ -105,8 +105,8 @@ function Dialog(props) {
105
105
function WelcomeDialog() {
106
106
return (
107
107
<Dialog
108
- title="Bienvenidos "
109
- message="¡Gracias por visitar nuestra nave espacial !" />
108
+ title="Welcome "
109
+ message="Thank you for visiting our spacecraft !" />
110
110
);
111
111
}
112
112
```
@@ -140,8 +140,8 @@ class SignUpDialog extends React.Component {
140
140
141
141
render() {
142
142
return (
143
- <Dialog title="Programa de exploración de Marte "
144
- message="Cómo debemos llamarte ?">
143
+ <Dialog title="Mars Exploration Program "
144
+ message="How should we refer to you ?">
145
145
<input value={this.state.login}
146
146
onChange={this.handleChange} />
147
147
<button onClick={this.handleSignUp}>
You can’t perform that action at this time.
0 commit comments