From f6d5ea7853732d0965037643d842655063d50626 Mon Sep 17 00:00:00 2001 From: britea Date: Sun, 10 May 2020 21:43:30 +0200 Subject: [PATCH] file confirm --- smart-hut/src/views/Confirm.js | 36 ++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 smart-hut/src/views/Confirm.js 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}

+
+
+
+
+ ); + } +}