feat: add move stories for rec mech card story
This commit is contained in:
parent
1282d3ed69
commit
e60120b84a
|
@ -16,10 +16,26 @@ const meta = {
|
||||||
export default meta
|
export default meta
|
||||||
type Story = StoryObj<typeof meta>
|
type Story = StoryObj<typeof meta>
|
||||||
|
|
||||||
export const Page: Story = {
|
export const Selected: Story = {
|
||||||
args: {
|
args: {
|
||||||
value: KEYSTORE_FILES,
|
value: KEYSTORE_FILES,
|
||||||
recoveryMechanism: KEYSTORE_FILES,
|
recoveryMechanism: KEYSTORE_FILES,
|
||||||
handleRecMechanismChange: () => {},
|
handleRecMechanismChange: () => {},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export const NotSelected: Story = {
|
||||||
|
args: {
|
||||||
|
value: KEYSTORE_FILES,
|
||||||
|
recoveryMechanism: '',
|
||||||
|
handleRecMechanismChange: () => {},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
export const WithoutValue: Story = {
|
||||||
|
args: {
|
||||||
|
value: '',
|
||||||
|
recoveryMechanism: KEYSTORE_FILES,
|
||||||
|
handleRecMechanismChange: () => {},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue