mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 01:51:05 +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 addCssWarning from '../src/cssWarning';
|
||||
|
||||
// @ts-expect-error (Converted from ts-ignore)
|
||||
import docJson from '../documentation.json';
|
||||
// remove ButtonComponent to test #12009
|
||||
const filtered = !docJson?.components
|
||||
|
@ -15,7 +15,6 @@ export const ButtonReactFC: React.FC<ButtonProps> = ({ onClick, children }) => (
|
||||
<button onClick={onClick}>{children}</button>
|
||||
);
|
||||
ButtonReactFC.defaultProps = {
|
||||
// @ts-expect-error (Converted from ts-ignore)
|
||||
onClick: null,
|
||||
};
|
||||
|
||||
@ -26,7 +25,6 @@ export const ButtonFC: FC<ButtonProps> = ({ onClick, children }) => (
|
||||
<button onClick={onClick}>{children}</button>
|
||||
);
|
||||
ButtonFC.defaultProps = {
|
||||
// @ts-expect-error (Converted from ts-ignore)
|
||||
onClick: null,
|
||||
};
|
||||
|
||||
@ -37,6 +35,5 @@ export const ButtonFunctionComponent: FC<ButtonProps> = ({ onClick, children })
|
||||
<button onClick={onClick}>{children}</button>
|
||||
);
|
||||
ButtonFunctionComponent.defaultProps = {
|
||||
// @ts-expect-error (Converted from ts-ignore)
|
||||
onClick: null,
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user