'use client'; import { Box, ClientOnly, Flex, Heading } from '@chakra-ui/react'; import { Segment, Select } from '#ui'; import { HOURS_OPTIONS, INTERVAL_OPTIONS } from './derivativesDashboardConfig'; import { DerivativesDashboardView } from './DerivativesDashboardView'; import type { DerivativesInterval } from './derivativesViewModel'; import { useDerivativesDashboard } from './useDerivativesDashboard'; const DerivativesPage = () => { const { hours, setHours, selectedInterval, setSelectedInterval, chartWindow, dashboard, } = useDerivativesDashboard(); return ( Derivatives Dashboard