Yeeun Kim
Yeeun Kim
I have same issue, renderPagination not working when I swipe, except it renders at first time
@vineesh-xavier looks like it. I guess you have to make calculate function which can be called every time scale changes?
I think you can customize using `timegridDisplayTime` it's in template options ``` calendar.setOptions({ template: { timegridDisplayTime({ time }) { return `sub timezone: ${time}`; }, }, }); ```
+1 tried html2canvas and it doesn't support backgroud-clip:text and now trying this library and guess it doesn't support background-clip at all
저렇게 책에 나와있어서 따라하는데 저런 오류가 있어서요, 혹시 오류 없으셨나요?
react router 버전 6 에서는 history가 없어졌기 때문에 useNavigate을 사용할 수 있습니다. ```js ... const navigate = useNavigate() const goBack = () => { const answer = window.confirm('정말 떠나시겠어요?') if...
위에 코드로만 보고 따라하시는 분들 버튼이 가운데 정렬이 안되고 위에 치우쳐있을 때, `display:inline-flex` 를 해당 코드에서 빼주시거나 , 아니면 ` display: inline-flex; justify-content: center; align-items: center;` 이렇게 추가해주시면 되요!
@clean-teach getUsers 함수는 인자가 없기 때문에 함수 이름만 넣어줬지만(호출은 useAsync 에서 콜백을 호출할때 하고), getUser함수는 id 라는 인자가 있기 때문에 getUser(id)를 넣어줘야 하는데, 이때 이렇게 넣어버리면 호출되기 때문에 화살표 함수를...