import Button from '@shared/atoms/Button' import React, { ChangeEvent, Dispatch, ReactElement, SetStateAction } from 'react' import styles from './Nav.module.css' import { graphTypes, GraphType } from './_constants' export default function Nav({ graphType, setGraphType }: { graphType: GraphType setGraphType: Dispatch> }): ReactElement { function handleGraphTypeSwitch(e: ChangeEvent) { e.preventDefault() setGraphType(e.currentTarget.textContent.toLowerCase() as GraphType) } return ( ) }