ChannelList.js 206 Bytes
Newer Older
Kim, Chaerin's avatar
Kim, Chaerin committed
1
2
3
4
5
6
7
8
9
10
11
12
import ChannelSingle from "./ChannelSingle";

const ChannelList = () => {
  return (
    <div>
      ChannelList Component 입니다.
      <ChannelSingle />
    </div>
  );
};

export default ChannelList;