zhou zhou
2 天以前 1724f77c35022b643c28dd3e5547679a5edc2d49
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import {
    ShowGuesser,
} from "react-admin";
 
import AiParamList from "./AiParamList";
import AiParamEdit from "./AiParamEdit";
 
export default {
    list: AiParamList,
    edit: AiParamEdit,
    show: ShowGuesser,
    recordRepresentation: (record) => {
        return `${record.name}`
    }
};