tos prompt (#1313)

* tos toast

* finish ToS prompt

Co-authored-by: Colin Megill <colinmegill@gmail.com>
This commit is contained in:
Bruce Martin
2020-03-28 22:31:19 -07:00
committed by GitHub
co-authored by Colin Megill
parent 8fac40b6ae
commit c8f98917c5
3 changed files with 91 additions and 0 deletions
+2
View File
@@ -10,6 +10,7 @@ import Legend from "./continuousLegend";
import Graph from "./graph/graph";
import MenuBar from "./menubar";
import Autosave from "./autosave";
import TermsOfServicePrompt from "./termsPrompt";
import actions from "../actions";
@@ -93,6 +94,7 @@ class App extends React.Component {
{loading ? null : <MenuBar />}
{loading ? null : <Graph key={graphRenderCounter} />}
{loading ? null : <Autosave />}
{loading ? null : <TermsOfServicePrompt />}
<Legend />
</div>
</Container>