skyouc
2025-05-10 ff18a8c103f1db8be2fcb22d69de3c32f745ff1d
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 ContractList from "./ContractList";
import ContractEdit from "./ContractEdit";
 
export default {
    list: ContractList,
    edit: ContractEdit,
    show: ShowGuesser,
    recordRepresentation: (record) => {
        return `${record.name}`
    }
};