import React from "react"; import type { Meta, StoryObj } from "@storybook/react"; import * as Card from "./Card"; import { Box } from "../Box"; import { Input } from "../Input"; import { Button } from "../Button"; import { cx } from "../../utils"; const meta: Meta = { title: "UI/Card", component: Card.$, }; export default meta; type Story = StoryObj; export const Default: Story = { render: () => ( Create account Manage all your transactions in one place.
event.preventDefault()}>
), }; // Another way to use this component alone is to import the named export // import { Card } from './Card'; export const Paddless: Story = { render: () => (

Dummy content while we create the input components.

), };