분류 전체보기93 antd table 사용할 때 Warning: Each child in a list should have a unique "key" prop. Check the render method of `Body`. 에러 https://github.com/ant-design/ant-design/issues/7623 Each record in table should have a unique `key` prop,or set `rowKey` to an unique primary key. · Issue #7623 · ant-design/ant- I'm trying to figure out how can I get unique keys for each record. So far, my code looks like this: let lastIndex = 0 const updateIndex = () => { lastIndex++ return lastIndex } ... constructor() {... github.com antd t.. 2023. 5. 24. [ TIL ] React Hook "useState" is called in function "control" that is neither a React function component nor a custom React Hook function. React component names must start with an uppercase letter. React Hook names must start with the word "use".eslintr.. 코드 리팩토링을 하다가 react function component 도 react custom hook 도 아닌 일반 ts함수에서 useState와 useEffect 를 쓰려고 하니 해당 에러가 났다. 이유는 useState, useEffect 같은 react hook 을 쓰려면 react hook 을 오직 react 함수 내에서 호출해야하기 때문이다. react hook 을 사용할 때는 아래 두가지 규칙을 준수해야한다. 최상위(at the Top Level)에서만 Hook을 호출해야 합니다 반복문, 조건문 혹은 중첩된 함수 내에서 Hook을 호출하지 마세요. 대신 early return이 실행되기 전에 항상 React 함수의 최상위(at the top level)에서 Hook을 호출해야 합니다. 이 규.. 2023. 4. 27. [ error ] npx create-react-app 에러 Unexpected token '.' when run create-react-app 아 이걸 한번 겪은 적이 있었는데 안 적어놓으니까 방법을 까먹어서 또 헤맸다 ..ㅡㅡ 내 시간.. 이제 절때 안 잊어먹으려고 글을 쓴다. 만약 노드 버전이 16.14.2 같은 16버전이라면 저런 에러가 난다 . nvm 으로 노드 버전을 바꿔주자 nvm list : 사용가능한 노드 리스트를 보여준다. nvm use 14.17.0 사용가능 한 노드 버전 중 한 버전을 nvm use 뒤에 적어준다. 그럼 노드 버전이 바뀌고 npx create-react-app --template typescript가 잘 실행된다! https://stackoverflow.com/questions/71259175/unexpected-token-when-run-create-react-app Unexpected token '.' w.. 2023. 4. 25. [ TIL ] 기본 브라우저 변경하기 / react 실행 브라우저 변경 react 가 실행되는 브라우저를 edge에서 크롬으로 바꾸고싶었는데 그냥 기본 브라우저를 변경하면 되는거였다.. 제어판 -> 모든 제어판 항목 -> 기본 프로그램 -> 기본 프로그램 설정 -> 웹 브라우저 를 엣지에서 크롬으로 변경해주면 된다. 참조 https://www.inflearn.com/questions/9105/%ED%98%B9%EC%8B%9C-%EB%A6%AC%EC%95%A1%ED%8A%B8-%EB%B9%8C%EB%93%9C%EB%90%98%EB%8A%94-%ED%99%88%ED%8E%98%EC%9D%B4%EC%A7%80%EB%A5%BC-%EB%B0%94%EA%BE%B8%EA%B3%A0%EC%8B%B6%EC%9D%80%EB%8D%B0-%EC%95%84%EC%8B%9C%EB%82%98%EC%9.. 2023. 4. 25. 이전 1 ··· 6 7 8 9 10 11 12 ··· 24 다음