-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcolumns.ts
More file actions
40 lines (34 loc) · 741 Bytes
/
columns.ts
File metadata and controls
40 lines (34 loc) · 741 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
"use client"
import { ColumnDef } from "@tanstack/react-table"
// This type is used to define the shape of our data.
// You can use a Zod schema here if you want.
export interface newUserData {
Firstname: string;
Lastname: string;
Email: string;
Country: string;
Employment: string;
// Use 'string' or 'Date' depending on how you parse it
}
export const columns: ColumnDef<newUserData>[] = [
{
accessorKey: "Firstname",
header: "Firstname",
},
{
accessorKey: "Lastname",
header: "Lastname",
},
{
accessorKey: "Email",
header: "Email",
},
{
accessorKey: "Country",
header: "Country",
},
{
accessorKey: "Employment",
header: "Employment",
},
]