feat: add move stories for rec mech card story

This commit is contained in:
RadoslavDimchev 2023-08-31 05:45:33 +03:00
parent 1282d3ed69
commit e60120b84a
1 changed files with 17 additions and 1 deletions

View File

@ -16,10 +16,26 @@ const meta = {
export default meta
type Story = StoryObj<typeof meta>
export const Page: Story = {
export const Selected: Story = {
args: {
value: KEYSTORE_FILES,
recoveryMechanism: KEYSTORE_FILES,
handleRecMechanismChange: () => {},
},
}
export const NotSelected: Story = {
args: {
value: KEYSTORE_FILES,
recoveryMechanism: '',
handleRecMechanismChange: () => {},
},
}
export const WithoutValue: Story = {
args: {
value: '',
recoveryMechanism: KEYSTORE_FILES,
handleRecMechanismChange: () => {},
},
}