mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 08:01:20 +08:00
15 lines
314 B
TypeScript
15 lines
314 B
TypeScript
import React from 'react';
|
|
|
|
// Repro #11019
|
|
interface Props {
|
|
kind?: 'a' | 'b';
|
|
disabled?: boolean;
|
|
}
|
|
|
|
export const OptionalButton = ({ disabled = false, kind = 'a' }: Props) => (
|
|
// eslint-disable-next-line react/button-has-type
|
|
<button {...{ disabled }}>Repro</button>
|
|
);
|
|
|
|
export default OptionalButton;
|