动态菜单和动态路由的 antd pro

TagSelectOption.d.ts 226B

123456789
  1. import * as React from 'react';
  2. export interface ITagSelectOptionProps {
  3. value: string | number;
  4. style?: React.CSSProperties;
  5. }
  6. export default class TagSelectOption extends React.Component<ITagSelectOptionProps, any> {}