zhou zhou
3 天以前 a49845f424ae5b1e43e391837a55c43ce07ea62d
1
2
3
4
5
6
7
8
9
10
11
12
import { ShowGuesser } from "react-admin";
import AiParamList from "./AiParamList";
import AiParamCreate from "./AiParamCreate";
import AiParamEdit from "./AiParamEdit";
 
export default {
    list: AiParamList,
    create: AiParamCreate,
    edit: AiParamEdit,
    show: ShowGuesser,
    recordRepresentation: (record) => `${record?.name || ''}`,
};