From 037c97682629c4db82e0e7462211614270db0dc3 Mon Sep 17 00:00:00 2001 From: Barry Gitarts Date: Thu, 28 Jun 2018 11:03:59 -0400 Subject: [PATCH] add transistion for AddPoll --- app/components/Voting.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/app/components/Voting.js b/app/components/Voting.js index b7e2b9c..6bed214 100644 --- a/app/components/Voting.js +++ b/app/components/Voting.js @@ -5,6 +5,7 @@ import AppBar from './standard/AppBar'; import AddPoll from './simple-voting/AddPoll'; import PollsList from './simple-voting/PollsList'; import StatusLogo from '../ui/components/StatusLogo'; +import Collapse from '@material-ui/core/Collapse'; class Voting extends PureComponent { state = { addPoll: false }; @@ -20,7 +21,9 @@ class Voting extends PureComponent {
- {addPoll && } + + + {rawPolls && } )