-
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.
feat: add transcript lookup for genes
- Loading branch information
1 parent
047cc77
commit 005823a
Showing
6 changed files
with
84 additions
and
41 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
27 changes: 27 additions & 0 deletions
27
client/src/components/main/shared/TranscriptField/TranscriptDropdown.tsx
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,27 @@ | ||
import { makeStyles, TextField, Typography } from "@material-ui/core"; | ||
import React, { KeyboardEventHandler } from "react"; | ||
import HelpTooltip from "../HelpTooltip/HelpTooltip"; | ||
|
||
interface Props { | ||
fieldValue: string; | ||
valueSetter: CallableFunction; | ||
errorText: string; | ||
} | ||
|
||
const TranscriptDropdown: React.FC<Props> = ({ | ||
fieldValue, | ||
valueSetter, | ||
errorText, | ||
}) => { | ||
const useStyles = makeStyles(() => ({ | ||
textField: { | ||
}, | ||
})); | ||
const classes = useStyles(); | ||
|
||
return ( | ||
<></> | ||
); | ||
}; | ||
|
||
export default TranscriptDropdown; |
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