import React from "react"; import { Meta, StoryObj } from "@storybook/react-webpack5"; import { Accordion, AccordionContent, AccordionItem, AccordionTrigger, } from "./Accordion"; const meta: Meta = { component: Accordion, title: "Primitives/Accordion", argTypes: {}, }; export default meta; type Story = StoryObj; export const Variants: Story = { render: (args) => (
In the app
  1. Step 1: {" "} Tap the Inbox icon and then tap Add receipts.
  2. Step 2: {" "} Tap the + symbol to attach a photo or PDF of the receipt for our system to match.
), args: {}, };