import { ArrowLeftIcon } from '@heroicons/react/24/outline'; import Button from './Button'; import NavBar from './NavBar'; import SideNavChannel from './SideNavChannel'; import streamData from '../placeholder/GetStreams'; import { NextPage } from 'next'; import Link from 'next/link'; const BrowseLayout: NextPage = ({children}) => { return (

Trending channels

    {streamData.data.map((stream) => (
  • ))}
{children}
); } export default BrowseLayout;