diff --git a/smart-hut/src/views/Confirm.js b/smart-hut/src/views/Confirm.js new file mode 100644 index 0000000..463e66a --- /dev/null +++ b/smart-hut/src/views/Confirm.js @@ -0,0 +1,36 @@ +import React, { Component } from "react"; +import { + Image, + Grid, + Button, + Icon, + Header, + Container, +} from "semantic-ui-react"; + +export default class Confirm extends Component { + render() { + return ( + + + + +
+ Congratulation! +
+ +

{this.props.msg}

+
+
+
+
+ ); + } +}