mirror of
https://github.com/snachodog/tok-to-insta-follower-bridge.git
synced 2025-04-04 03:01:25 -06:00
27 lines
485 B
TypeScript
27 lines
485 B
TypeScript
import type { Meta, StoryObj } from "@storybook/react";
|
|
|
|
import AlertError from "./AlertError";
|
|
|
|
const meta: Meta<typeof AlertError> = {
|
|
title: "CSUI/AlertError",
|
|
component: AlertError,
|
|
};
|
|
export default meta;
|
|
|
|
type Story = StoryObj<typeof AlertError>;
|
|
|
|
export const Default: Story = {
|
|
args: {
|
|
children: "Error!",
|
|
},
|
|
};
|
|
|
|
export const WithRestartButton: Story = {
|
|
args: {
|
|
children: "Rate limit Error!",
|
|
retryAction: () => {
|
|
alert("restart!");
|
|
},
|
|
},
|
|
};
|