import React from 'react' import type { Meta, StoryObj } from '@storybook/react' import { Parallax } from './Parallax' import './Parallax.stories.css' const meta: Meta = { title: 'Parallax', component: Parallax } export default meta type Story = StoryObj export const Depth: Story = { render: () => (
) }