From c3604cc6a7cb6de3a3451cf1f8df5e46e4865832 Mon Sep 17 00:00:00 2001 From: hassaanQadir <86531769+hassaanQadir@users.noreply.github.com> Date: Wed, 6 Mar 2024 21:09:23 -0800 Subject: [PATCH] Add style parameter to instantiation code The component was not visible until I added the style parameter. I recommend style={{ height: "100vh", width: "100vw" }}. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index cec262ac8..1fd0fa09f 100644 --- a/README.md +++ b/README.md @@ -79,6 +79,7 @@ export default () => ( name="J23100" seq="TTGACGGCTAGCTCAGTCCTAGGTACAGTGCTAGC" annotations={[{ name: "promoter", start: 0, end: 34, direction: 1, color: "blue" }]} + style={{ height: "100vh", width: "100vw" }} /> ); ```