-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
17 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> | ||
); | ||
} |