zhou zhou
2026-03-24 6e5ff559023efd2d24fdca2adcb7268d06420e46
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 || ''}`,
};