chinsun9 / chinsun9.github.io

chinsung's blog
https://chinsun9.github.io/
5 stars 2 forks source link

2021/05/07/react-table-practice/ #28

Open utterances-bot opened 1 year ago

utterances-bot commented 1 year ago

react table 연습 - 친성의 블로그

표를 포함한 간단한 웹을 만들 때 부트스트랩 템플릿 안에 들어있는 datatables를 사용하곤 했었다 데이터가 쌓이지 않는 상황에서, 페이지네이션 및 필터링을 이미 제공하고 있기 때문에 내가 구현할 내용이 거의 없다는 게 장점이다 상황 나는 주로 리액트를 사용하는데

https://chinsun9.github.io/2021/05/07/react-table-practice/

KENNYSOFT commented 1 year ago
function Table({
  columns,
  data,
}: {
  columns: Column<RowType>[];
  data: RowType[];
}) {
  const { getTableProps, headerGroups, rows, prepareRow } = useTable({
    columns,
    data,
  });
}

이런 식으로 타입 잡아주니 문제 없이 잘 됩니다 ㅎㅎ

참고: https://github.com/KENNYSOFT/salary-calculator/commit/f781f751b28e5a131971d716771b3b0e59a1c2f2#diff-26ad4b834941d9b19ebf9db8082bd202aaf72ea0ddea85f5a8a0cb3c729cc6f2