ijunseong

Update: move channel list to center

1 .body { 1 .body {
2 display: flex; 2 display: flex;
3 + justify-content: center;
4 + background-color: #14141e;
3 } 5 }
...\ No newline at end of file ...\ No newline at end of file
......
1 import React from "react"; 1 import React from "react";
2 import "./Body.css"; 2 import "./Body.css";
3 -import {ChanelList} from "./Chanel.js" 3 +import {ChannelList} from "./Channel.js"
4 4
5 function Body(){ 5 function Body(){
6 return ( 6 return (
7 <div className="body"> 7 <div className="body">
8 - <ChanelList /> 8 + <ChannelList />
9 </div> 9 </div>
10 ); 10 );
11 } 11 }
......