accessor values
how do i access these values?
export type ColumnsPartnerDef = {
userID: string;
data: {
category: string;
name: string;
type: string;
description: string;
resources: string;
phonenumber: string;
email: string;
userID?: string; // userID is optional
}
}export type ColumnsPartnerDef = {
userID: string;
data: {
category: string;
name: string;
type: string;
description: string;
resources: string;
phonenumber: string;
email: string;
userID?: string; // userID is optional
}
}{
accessorKey: "data.category", // does not work
}{
accessorKey: "data.category", // does not work
}