import React from 'react' import { Button, DialogContent, Typography, Paper } from '@mui/material' import { Dialog } from '@jbrowse/core/ui' import { makeStyles } from 'tss-react/mui' import ArrowForwardIcon from '@mui/icons-material/ArrowForward' const THEME_SPACING_A = 8 // theme.spacing(2) const THEME_SPACING_B = 6 // theme.spacing(1) const useStyles = makeStyles()(theme => ({ closeButton: { position: 'absolute', left: '80px', color: theme.palette.grey[500], }, root: { margin: THEME_SPACING_B, }, paper: { display: 'flex', flexDirection: 'column', padding: THEME_SPACING_A, }, imgContainer: { display: 'flex', justifyContent: 'center', }, img: { maxWidth: '100%', maxHeight: '100%', verticalAlign: 'middle', }, helperTextContainer: { paddingTop: THEME_SPACING_A, paddingBottom: THEME_SPACING_A, }, textContainer: { display: 'flex', flexDirection: 'row', gap: THEME_SPACING_A, alignItems: 'center', background: theme.palette.grey[100], padding: THEME_SPACING_B, marginTop: THEME_SPACING_A, marginBottom: THEME_SPACING_A, }, buttonContainer: { display: 'flex', justifyContent: 'flex-end', }, })) export default function TipDialogue({ handleClose, }: { handleClose: () => void }) { const { classes } = useStyles() return (
Step 1 Perform a query on the GDC
Step 2 Enable column for 'File UUID'
Step 3 Click JSON button to Export
Step 4 Drop JSON file into the GDC Widget on JBrowse
) }