Skip to content

Commit

Permalink
forgot this
Browse files Browse the repository at this point in the history
  • Loading branch information
amkram committed Mar 16, 2022
1 parent 5bdda29 commit bd8144a
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions web-app/src/components/Troubleshooting.js
Original file line number Diff line number Diff line change
@@ -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>
);
}

0 comments on commit bd8144a

Please sign in to comment.