-
1
-
2
-
3
-
4
-
5
-
6
-
7
-
8
-
9
-
10
-
11
-
12
-
13
-
14
-
15
-
16
-
17
// SPDX-FileCopyrightText: 2025 Shota FUJI <pockawoooh@gmail.com>
// SPDX-License-Identifier: AGPL-3.0-only
import type { Meta, StoryObj } from "@storybook/react";
import { withInmemoryRouter } from "../../../.storybook/decorators/withInmemoryRouter.tsx";
import { Loading } from "./Loading.tsx";
export default {
component: Loading,
decorators: [withInmemoryRouter()],
} satisfies Meta<typeof Loading>;
type Story = StoryObj<typeof Loading>;
export const Default: Story = {};