[React+Tailwind] Alert を TypeScript に書き直してみた | 心を無にして始める React

準備
書き直すベースはこちらの Alert コンポーネントです。
JavaScript
ベースの Alert.js です。
TypeScript
Alert.tsx として編集します。
結果
変化はないので、前と同じ。

はい、できました。
2022-09-12
書き直すベースはこちらの Alert コンポーネントです。
ベースの Alert.js です。
import { forwardRef } from 'react';
import { Alert as FlowbiteAlert } from 'flowbite-react';
const Alert = forwardRef(({
show,
additionalContent,
children,
color = "success",
icon,
onDismiss,
rounded = true,
withBorderAccent = true,
...otherProps
}, ref) => {
if (!show) {
return <></>;
}
return (
<FlowbiteAlert
additionalContent={additionalContent}
color={color}
icon={icon}
onDismiss={onDismiss}
ref={ref}
rounded={rounded}
withBorderAccent={withBorderAccent}
{...otherProps}
>
{children}
</FlowbiteAlert>
);
})
export default Alert;
Alert.tsx として編集します。
import { forwardRef, LegacyRef } from 'react';
import {
Alert as FlowbiteAlert,
AlertProps as FlowbiteAlertProps,
} from 'flowbite-react';
type AlertProps = {
show: boolean,
} & FlowbiteAlertProps;
const Alert = forwardRef((
{
show,
additionalContent,
children,
color = "success",
icon,
onDismiss,
ref={ref}
rounded = true,
withBorderAccent = true,
...otherProps
}: AlertProps,
ref: LegacyRef<HTMLDivElement>,
) => {
if (!show) {
return <></>;
}
return (
<FlowbiteAlert
additionalContent={additionalContent}
color={color}
icon={icon}
onDismiss={onDismiss}
rounded={rounded}
withBorderAccent={withBorderAccent}
{...otherProps}
>
{children}
</FlowbiteAlert>
);
})
export default Alert;
変化はないので、前と同じ。
はい、できました。
このサイトでも Google Search Console を使っているのですが ...
今回は、Button Group コンポーネントを表示します。 準備 まだ co ...
準備 Flowbite が使えるプロジェクトを準備します。 Navbar コンポ ...
準備 書き直すベースはこちらの Navbar コンポーネントです。 JavaSc ...
TanStask Table v8 準備 インストール npm install ...
準備 Flowbite が使えるプロジェクトを準備します。 Button コンポ ...
Google Search Console Insight の通知(過去28日間でクリック数が〇〇クリックに到達しました。)
このサイトでも Google Search Console を使っているのですが ...[React+Tailwind] Tooltip を TypeScript に書き直してみた | 心を無にして始める React
準備 書き直すベースはこちらの Tooltip コンポーネントです。 JavaS ...[React+Tailwind] Flowbite で Tooltip を表示してみる | 心を無にして始める React
準備 Flowbite が使えるプロジェクトを準備します。 Tooltip コン ...[React+Tailwind] Toast を TypeScript に書き直してみた | 心を無にして始める React
準備 書き直すベースはこちらの Toast コンポーネントです。 JavaScr ...[React+Tailwind] Timeline を TypeScript に書き直してみた | 心を無にして始める React
準備 書き直すベースはこちらの Timeline コンポーネントです。 Java ...