Skip to content

Instantly share code, notes, and snippets.

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