-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add leaflet and wrap Treenome in own component
- Loading branch information
Simon Bukin
committed
Apr 18, 2023
1 parent
ba4c4bf
commit d7df0f1
Showing
4 changed files
with
18 additions
and
8 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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import JBrowsePanel from "./JBrowsePanel"; | ||
import { JBrowseErrorBoundary } from "./JBrowseErrorBoundary"; | ||
|
||
export default function TreenomeBrowser({ state, settings }) { | ||
return ( | ||
<JBrowseErrorBoundary> | ||
<JBrowsePanel treenomeState={state} settings={settings} /> | ||
</JBrowseErrorBoundary> | ||
); | ||
} |
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