]> git.localhorst.tv Git - alttp.git/blob - resources/js/components/episodes/Channels.js
sync episode channels
[alttp.git] / resources / js / components / episodes / Channels.js
1 import PropTypes from 'prop-types';
2 import React from 'react';
3
4 import Channel from './Channel';
5
6 const Channels = ({ channels }) =>
7         <div className="episode-channels text-right">
8                 {channels.map(channel =>
9                         <Channel channel={channel} key={channel.id} />
10                 )}
11         </div>;
12
13 Channels.propTypes = {
14         channels: PropTypes.arrayOf(PropTypes.shape({
15         })),
16 };
17
18 export default Channels;