#패스트캠퍼스 #패스트캠퍼스부트캠프 #프론트엔드프로젝트십

git clone <https://github.com/KDT1-FE/KDT-FP-YOUTUBE>
main 브랜치가 아닌 branch를 생성하고 
git switch -c john
(switched to a new branch 'john'
git add .

git push origin john 
//소스코드들을 john 브랜치로 올린다.

//pull request 페이지
[n조 프로젝트]
n조 구성원
구성원 설명
프로젝트 어려웠던 점 작성 후
create full request 하면, 
commit할 때 마다 확인가능. 코드의 특정부분에 글 작성 가능.
import logo from './logo.svg';
import './App.css';
import { observer } from 'mobx-react-lite';

function App(props) {
  const { myCounter } = props;
  return (
    <div style={{ textAlign: 'center', padding: 16 }}>
      카운트: {myCounter.count}
      <br />
      <br />

      마이너스?: {myCounter.isNegative}
      <br />
      <br />

      <button onClick={() => myCounter.increase()}>+</button>
      <button onClick={() => myCounter.decrease()}>-</button>
    </div>
  );
}

export default observer(App);