Browse Source

feat(ui): add new story

pull/4305/head
KenTandrian 7 months ago
parent
commit
8733fd952a
  1. 14
      libs/ui/src/lib/tags-selector/tags-selector.component.stories.ts

14
libs/ui/src/lib/tags-selector/tags-selector.component.stories.ts

@ -47,6 +47,20 @@ export const Default: Story = {
} }
}; };
export const CreateCustomTags: Story = {
args: {
hasPermissionToCreateTags: true,
tags: [
{
id: 'EMERGENCY_FUND',
name: 'Emergency Fund',
userId: null
}
],
tagsAvailable: OPTIONS
}
};
export const Readonly: Story = { export const Readonly: Story = {
args: { args: {
readonly: true, readonly: true,

Loading…
Cancel
Save