-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSuccess.js
More file actions
31 lines (26 loc) · 850 Bytes
/
Copy pathSuccess.js
File metadata and controls
31 lines (26 loc) · 850 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import React, { Component } from 'react';
import MuiThemeProvider from 'material-ui/styles/MuiThemeProvider';
import AppBar from 'material-ui/AppBar';
export class Success extends Component {
/* continue = e => {
e.preventDefault();
// Form may be processes here by an API or backend framework
this.props.nextStep();
} */
/* back = e => {
e.preventDefault();
this.props.prevStep();
}; */
render() {
return (
<MuiThemeProvider>
<React.Fragment>
<AppBar title="Success" />
<h3>You have successfully submitted your information.</h3>
<h4>Thank you!</h4>
</React.Fragment>
</MuiThemeProvider>
);
}
}
export default Success;