From bd8144a5a298985c112c8202c6a23ef8bf436e34 Mon Sep 17 00:00:00 2001
From: Alex Kramer <alex.kramer@ucsc.edu>
Date: Tue, 15 Mar 2022 22:15:42 -0700
Subject: [PATCH] forgot this

---
 web-app/src/components/Troubleshooting.js | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)
 create mode 100644 web-app/src/components/Troubleshooting.js

diff --git a/web-app/src/components/Troubleshooting.js b/web-app/src/components/Troubleshooting.js
new file mode 100644
index 0000000..d04ed44
--- /dev/null
+++ b/web-app/src/components/Troubleshooting.js
@@ -0,0 +1,17 @@
+import React from "react";
+import Box from "@material-ui/core/Box";
+import Grid from "@material-ui/core/Grid";
+
+export default function Troubleshooting(props) {
+  return (
+    <div style={{ padding: "5%", paddingTop: 0, paddingLeft: 0}}>
+          <Box>
+             <h5 style={{textDecoration: "underline", textAlign: "center"}}> Troubleshooting</h5>
+                <ul>
+                    <li>The global tree is very large, and always growing. Make sure you have ~4GB of free RAM.</li>
+                    <li>If you are experiencing very slow runtime (several minutes per sample), try closing your browser completely (all windows) and try again.</li>
+                </ul>
+          </Box>
+    </div>
+  );
+}