diff --git a/src/components/PhotoExibition/PhotoExibition.jsx b/src/components/PhotoExibition/PhotoExibition.jsx new file mode 100644 index 0000000..2da2ec9 --- /dev/null +++ b/src/components/PhotoExibition/PhotoExibition.jsx @@ -0,0 +1,15 @@ +import { Button } from "../ui/button" +import { Input } from "../ui/input" +import {ImageIcon, Trash2} from "lucide-react" + +export const PhotoExibition = () => { + return( +
+ + + +
+ ) +} \ No newline at end of file diff --git a/src/components/PhotoExibition/PhotoExibition.stories.tsx b/src/components/PhotoExibition/PhotoExibition.stories.tsx new file mode 100644 index 0000000..7adc6ff --- /dev/null +++ b/src/components/PhotoExibition/PhotoExibition.stories.tsx @@ -0,0 +1,19 @@ +import type { Meta, StoryObj } from '@storybook/react'; + +import { PhotoExibition } from './PhotoExibition'; + +const meta: Meta = { + component: PhotoExibition, +}; + +export default meta; +type Story = StoryObj; + +/* + *👇 Render functions are a framework specific feature to allow you control on how the component renders. + * See https://storybook.js.org/docs/api/csf + * to learn how to use render functions. + */ +export const Primary: Story = { + render: () => , +}; \ No newline at end of file