feat: add examples for new story

This commit is contained in:
RadoslavDimchev 2023-12-20 09:15:34 +02:00
parent aa351bb9da
commit 53bdf40344
1 changed files with 12 additions and 2 deletions

View File

@ -16,6 +16,16 @@ const meta = {
export default meta
type Story = StoryObj<typeof meta>
export const Page: Story = {
args: {},
export const VC: Story = {
args: {
addressType: 'Validator Client',
portType: 'VC',
},
}
export const Beacon: Story = {
args: {
addressType: 'Beacon',
portType: 'Beacon',
},
}