import type { Meta, StoryObj } from '@storybook/react'; import { AuthLayout } from './AuthLayout'; const meta: Meta = { title: 'Components/Features/Auth/AuthLayout', component: AuthLayout, parameters: { layout: 'fullscreen', }, tags: ['autodocs'], }; export default meta; type Story = StoryObj; export const Default: Story = { args: { title: 'Welcome Back', subtitle: 'Please sign in to continue', children: (
Email
Password
Sign In
), footerLinks: [ { label: 'Forgot Password?', to: '/forgot-password' }, { label: "Don't have an account? Sign up", to: '/register' } ] }, };