Skip to content

Commit 6008217

Browse files
committed
final-page component
1 parent 4cb98dd commit 6008217

File tree

2 files changed

+17
-3
lines changed

2 files changed

+17
-3
lines changed

lib/components/final-page/final-page.js

Lines changed: 2 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,20 @@
11
import * as React from 'react';
22
import * as ReactDOM from 'react-dom';
3-
import {Paper, Divider} from 'material-ui';
3+
import {Paper, Divider, Card, CardTitle, CardText, CardActions, FlatButton} from 'material-ui';
44

55
export const FinalPage = () => (
6-
<div>Final Page</div>
6+
<Paper>
7+
<Card>
8+
<CardTitle title='Congratulations!'
9+
subtitle='Tutorial Complete!' />
10+
<CardText>
11+
What's next?
12+
13+
<CardActions>
14+
<a href='https://coderoad.github.io/#tutorials'><FlatButton label='See More Tutorials' disabled={true}/></a>
15+
<a href='https://coderoad.github.io/build'><FlatButton label='Learn how to Create a Tutorial' /></a>
16+
</CardActions>
17+
</CardText>
18+
</Card>
19+
</Paper>
720
);

0 commit comments

Comments
 (0)