import React from 'react';

import s from './TvChannelGrid.module.scss';

interface ITvChannelGridProps {
  title?: string;
  children: any;
}

const TvChannelGrid = ({ title = '', children }: ITvChannelGridProps) => {
  return (
    <>
      {title && <h2 className={s.title}>{title}</h2>}
      <div className={s.subscriptions}>{children}</div>
    </>
  );
};

export default TvChannelGrid;
