-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update dependencies, add suspense boundary (#285)
- Loading branch information
1 parent
c40fbfc
commit cdd5acb
Showing
5 changed files
with
156 additions
and
133 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
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
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 |
---|---|---|
@@ -1,14 +1,17 @@ | ||
"use client" | ||
import { Box } from "@mui/material" | ||
import { GeneExpression } from "../../search/_ccredetails/geneexpression" | ||
import { Suspense } from "react" | ||
|
||
export default function GeneExpressionApplet() { | ||
return ( | ||
<Box maxWidth="95%" margin="auto" marginTop={3}> | ||
<GeneExpression | ||
assembly={"GRCh38"} | ||
applet | ||
/> | ||
<Suspense> | ||
<GeneExpression | ||
assembly={"GRCh38"} | ||
applet | ||
/> | ||
</Suspense> | ||
</Box> | ||
) | ||
} |
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
Oops, something went wrong.