Skip to content

Instantly share code, notes, and snippets.

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