import { StoryObj, Meta } from '@storybook/react';

import { NavigationLink } from '@/components';

const meta: Meta<typeof NavigationLink> = {
  component: NavigationLink,
};

export default meta;

type TStory = StoryObj<typeof NavigationLink>;

export const Selected: TStory = {
  args: {
    children: 'General',
    isActive: true,
  },
};

export const NotSelected: TStory = {
  args: {
    children: 'General',
    isActive: false,
  },
};
