coder/site/src/components/GroupAvatar/GroupAvatar.stories.tsx

20 lines
393 B
TypeScript

import type { Meta, StoryObj } from "@storybook/react";
import { GroupAvatar } from "./GroupAvatar";
const meta: Meta<typeof GroupAvatar> = {
title: "components/GroupAvatar",
component: GroupAvatar,
};
export default meta;
type Story = StoryObj<typeof GroupAvatar>;
const Example: Story = {
args: {
name: "My Group",
avatarURL: "",
},
};
export { Example as GroupAvatar };