+
+ {
- return params.row.birthDate.toLocaleDateString();
+ {
+ id: "sex",
+ headerName: "Sex",
+ renderCell: (params) => {
+ return (
+ {params.row.sex}
+ );
+ },
},
- },
- {
- id: "firstAppearanceDate",
- headerName: "First Appearance",
- renderCell: (params) => {
- return params.row.firstAppearanceDate.toLocaleDateString();
+ {
+ id: "birthDate",
+ headerName: "Birth Date",
+ renderCell: (params) => {
+ return params.row.birthDate.toLocaleDateString();
+ },
},
- },
- {
- id: "isGuest",
- headerName: "Is Guest",
- renderCell: (params) => {
- return params.row.isGuest ? (
- check_box
- ) : (
-
- check_box_outline_blank
-
- );
+ {
+ id: "firstAppearanceDate",
+ headerName: "First Appearance",
+ renderCell: (params) => {
+ return params.row.firstAppearanceDate.toLocaleDateString();
+ },
},
- },
- {
- id: "actions",
- renderCell: (params) => (
-
-