Skip to content

Instantly share code, notes, and snippets.

@alic-xc
Created December 19, 2023 17:36
Show Gist options
  • Save alic-xc/0b18bd5d75e5ef48a5924109f7251bd3 to your computer and use it in GitHub Desktop.
Save alic-xc/0b18bd5d75e5ef48a5924109f7251bd3 to your computer and use it in GitHub Desktop.
import Button from "../components/Button";
import type { Meta, StoryObj } from "@storybook/react-native";
const meta: Meta<typeof Button> = {
title: "General/Button",
component: Button,
};
export default meta;
type Story = StoryObj<typeof meta>;
export const Default: Story = {
args: {
title: "Click Me",
},
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment