Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
12345678910 |
- import * as React from 'react';
-
- export interface CloseButtonProps {
- label?: string;
- onClick?: React.MouseEventHandler<CloseButton>;
- }
-
- declare class CloseButton extends React.Component<CloseButtonProps> {}
-
- export default CloseButton;
|