No Description

index.ts 436B

12345678910111213141516171819
  1. import React from 'react';
  2. import { LIMIT } from "@/components/comment/config/constant";
  3. export const CommentContext = React.createContext('comment')
  4. // const DEFAULT_TYPE = 1;
  5. // const DEFAULT_BUSSINESSID = 'test';
  6. // const DEFAULT_BUSSINESS_USER_ID = 4;
  7. // const DEFAULT_PAGE = 1;
  8. // const DEFAULT_LIMIT = LIMIT;
  9. export const DefaultValue = {
  10. type: 1,
  11. bussiness_id: 'test',
  12. bussiness_user_id: 4,
  13. page: 1,
  14. limit: LIMIT,
  15. }