function uclidRecursion(a, b) {
if(b===0) return a;
n = a % b;
a = b;
b = n;
return uclidRecursion(a,b);
}
html { height: 100%; }
body {
min-height: 100%;
}
#root {
display: flex;
position: absolute;
flex-direction: column;
height: 100%;
width: 100%;
}
1) css 반응형 적용해서 max-width적용해서 핸드폰에서도 볼 수 있게 만들기 2) 서버를 만들어서 (with express JS) URL을 껐다 켜도 내가 등록해놓은 자료들이 계속 유지되도록 만들어보기 3) flex or grid를 써서 내가 그리는 완벽한 아키텍쳐 만들어보기 4) 시계 기능 구현해보기