Quantcast
Channel: プログラミング
Viewing all articles
Browse latest Browse all 7970

tanstack table で ColumnDef の meta に型をつける - しがないエンジニア頑張る

$
0
0
type MetaType ={
  hoge?: boolean;}exporttype TableColumnDef = ColumnDef<T>& {
  meta?: MetaType;}// Tanstack table を返すIFとするtype Props<T>={
data: T[];
columns: TableColumnDef<T>[];
...
}

これだけ。


Viewing all articles
Browse latest Browse all 7970

Trending Articles