import type React from 'react'
import { EmptyState } from './EmptyState'
interface HourBarsProps {
hours: { hour: number; count: number }[]
}
export function HourBars({ hours }: HourBarsProps): React.JSX.Element {
if (hours.length !== 24) {
return