From c775fab955f6545f4526db2231e33a2a4db79457 Mon Sep 17 00:00:00 2001 From: Barry Gitarts Date: Wed, 27 Jun 2018 15:08:09 -0400 Subject: [PATCH] add status logo --- app/components/Voting.js | 4 ++++ app/ui/components/StatusLogo.js | 12 ++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 app/ui/components/StatusLogo.js diff --git a/app/components/Voting.js b/app/components/Voting.js index 7bfe37a..4ecef3d 100644 --- a/app/components/Voting.js +++ b/app/components/Voting.js @@ -4,11 +4,15 @@ import 'typeface-roboto'; import AppBar from './standard/AppBar'; import AddPoll from './simple-voting/AddPoll'; import PollsList from './simple-voting/PollsList'; +import StatusLogo from '../ui/components/StatusLogo'; export default ({ toggleAdmin, rawPolls }) => ( +
+ +
{rawPolls && }
diff --git a/app/ui/components/StatusLogo.js b/app/ui/components/StatusLogo.js new file mode 100644 index 0000000..f77eee5 --- /dev/null +++ b/app/ui/components/StatusLogo.js @@ -0,0 +1,12 @@ +import React from "react" + +const Status = props => ( + + + + + + +); + +export default Status;