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