import React from 'react'; import { Button, Stack } from '@mui/material'; const options = ['All Time', '12 Months', '30 Days', '7 Days', '24 Hour']; const TimeFrameSelector = ({ selected, onChange }) => ( {options.map(option => ( ))} ); export default TimeFrameSelector;