1
10 小时以前 6c3cc6842009f3897c3fb18bef8a6634fe653818
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import React, { useState, useRef, useEffect, useMemo } from "react";
import {
    ListGuesser,
    EditGuesser,
    ShowGuesser,
} from "react-admin";
 
import BasStationAreaList from "./BasStationAreaList";
import BasStationAreaEdit from "./BasStationAreaEdit";
 
export default {
    list: BasStationAreaList,
    edit: BasStationAreaEdit,
    show: ShowGuesser,
    recordRepresentation: (record) => {
        return `${record.id}`
    }
};