import React from 'react' import { Channel } from '@/types/lofi' interface ChannelButtonsProps { channels: Channel[] currentChannel: number setCurrentChannel: (index: number) => void currentTheme: string } const ChannelButtons: React.FC = ({ channels, currentChannel, setCurrentChannel, currentTheme, }) => (
{channels.map((channel, idx) => ( ))}
) export default ChannelButtons