mtg-lets-trade

Website/webapp to facilitate trading between players of Magic: The Gathering
git clone https://kevincorvisier.fr/git/mtg-lets-trade.git
Log | Files | Refs

ColumnDef.ts (190B)


      1 import { ReactNode } from "react";
      2 
      3 export type ColumnDef<T> = {
      4 	key: React.Key,
      5 	header: string,
      6 	render: (row: T) => ReactNode
      7 };
      8 
      9 export type RowDef<T> = {
     10 	key: (row: T) => React.Key
     11 };