[React+Tailwind] Button を TypeScript に書き直してみた | 心を無にして始める React
準備
書き直すベースはこちらの Button コンポーネントです。
JavaScript
ベースの Button.js です。
import { forwardRef } from 'react';
import { Button as FlowbiteButton } from 'flowbite-react';
const Button = forwardRef((
{
children,
color,
gradientDuoTone,
gradientMonochrome,
href,
label,
outline = false,
pill = false,
positionInGroup,
size,
...otherProps
},
ref,
) => {
return (
<FlowbiteButton
color={color}
gradientDuoTone={gradientDuoTone}
gradientMonochrome={gradientMonochrome}
href={href}
label={label}
outline={outline}
pill={pill}
positionInGroup={positionInGroup}
ref={ref}
size={size}
{...otherProps}
>
{children}
</FlowbiteButton>
);
});
export default Button;
TypeScript
Button.tsx として編集します。
import { forwardRef, LegacyRef } from 'react';
import {
Button as FlowbiteButton,
ButtonProps as FlowbiteButtonProps,
} from 'flowbite-react';
type ButtonProps = {} & FlowbiteButtonProps;
const Button = forwardRef((
{
children,
color,
gradientDuoTone,
gradientMonochrome,
href,
label,
outline = false,
pill = false,
positionInGroup,
size,
...otherProps
}: ButtonProps,
ref: LegacyRef<HTMLButtonElement>,
) => {
return (
<FlowbiteButton
color={color}
gradientDuoTone={gradientDuoTone}
gradientMonochrome={gradientMonochrome}
href={href}
label={label}
outline={outline}
pill={pill}
positionInGroup={positionInGroup}
ref={ref}
size={size}
{...otherProps}
>
{children}
</FlowbiteButton>
);
});
export default Button;
結果
変化はないので、前と同じ。
はい、できました。