mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 15:31:16 +08:00
Remove more unused disable directives
This commit is contained in:
parent
6bdfcfad14
commit
ae6b1a6c95
@ -2,7 +2,6 @@
|
|||||||
import { setCompodocJson } from '@storybook/addon-docs/angular';
|
import { setCompodocJson } from '@storybook/addon-docs/angular';
|
||||||
import addCssWarning from '../src/cssWarning';
|
import addCssWarning from '../src/cssWarning';
|
||||||
|
|
||||||
// @ts-expect-error (Converted from ts-ignore)
|
|
||||||
import docJson from '../documentation.json';
|
import docJson from '../documentation.json';
|
||||||
// remove ButtonComponent to test #12009
|
// remove ButtonComponent to test #12009
|
||||||
const filtered = !docJson?.components
|
const filtered = !docJson?.components
|
||||||
|
@ -15,7 +15,6 @@ export const ButtonReactFC: React.FC<ButtonProps> = ({ onClick, children }) => (
|
|||||||
<button onClick={onClick}>{children}</button>
|
<button onClick={onClick}>{children}</button>
|
||||||
);
|
);
|
||||||
ButtonReactFC.defaultProps = {
|
ButtonReactFC.defaultProps = {
|
||||||
// @ts-expect-error (Converted from ts-ignore)
|
|
||||||
onClick: null,
|
onClick: null,
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -26,7 +25,6 @@ export const ButtonFC: FC<ButtonProps> = ({ onClick, children }) => (
|
|||||||
<button onClick={onClick}>{children}</button>
|
<button onClick={onClick}>{children}</button>
|
||||||
);
|
);
|
||||||
ButtonFC.defaultProps = {
|
ButtonFC.defaultProps = {
|
||||||
// @ts-expect-error (Converted from ts-ignore)
|
|
||||||
onClick: null,
|
onClick: null,
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -37,6 +35,5 @@ export const ButtonFunctionComponent: FC<ButtonProps> = ({ onClick, children })
|
|||||||
<button onClick={onClick}>{children}</button>
|
<button onClick={onClick}>{children}</button>
|
||||||
);
|
);
|
||||||
ButtonFunctionComponent.defaultProps = {
|
ButtonFunctionComponent.defaultProps = {
|
||||||
// @ts-expect-error (Converted from ts-ignore)
|
|
||||||
onClick: null,
|
onClick: null,
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user