type colorblindness f=component

This commit is contained in:
Jessica-Koch 2019-08-25 21:09:53 -07:00
parent 249f6cd186
commit 71bb3b36b2

View File

@ -79,7 +79,7 @@ const getColorList = (active: string | null, set: (i: string | null) => void): L
})),
];
export function ColorBlindness() {
export const ColorBlindness: React.FC = () => {
const [active, setActiveState] = useState(null);
const setActive = (activeState: string | null): void => {
@ -114,4 +114,4 @@ export function ColorBlindness() {
</IconButton>
</WithTooltip>
);
}
};