import { ArrowRightIcon, HeartIcon, UserIcon } from '@heroicons/react/24/outline'; import Button from '../../components/Button'; import ChatMessage from '../../components/ChatMessage'; import Input from '../../components/Input'; import { numFormatter } from '../../utils/format'; import streams from '../../placeholder/GetStreams'; import { NextPage } from 'next'; import BrowseLayout from '../../components/BrowseLayout'; const ChannelPage: NextPage = () => { const stream = streams.data[1]; return (
{stream.user_name}
{stream.title}
{stream.game_name}
{numFormatter.format(stream.viewer_count)} {stream.started_at}

Stream Chat

{new Array(60).fill(0).map((_, i) => ( ))}
); } export default ChannelPage;