import type { Meta, StoryObj } from '@storybook/react'; import { AstralBackground } from './AstralBackground'; const meta = { title: 'UI/AstralBackground', component: AstralBackground, tags: ['autodocs'], parameters: { layout: 'fullscreen', }, } satisfies Meta; export default meta; type Story = StoryObj; export const Default: Story = { render: () => (

Astral Background

), };