We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Create Storybook playground stories for EUI components whose names start with the letters I, J, K, L. This is a part of #7405.
Components to create stories for:
TODO
import React from 'react'; import type { Meta, StoryObj } from '@storybook/react'; const meta: Meta<COMPONENT_PROPS> = { // TODO: Replace COMPONENT_PROPS with the component props type title: 'Components/COMPONENT_EXPORT_NAME', // TODO: Replace COMPONENT_EXPORT_NAME with component export name component: COMPONENT, // TODO: Replace with the actual component import argTypes: {} // TODO: Setup arg types, args: {}, // TODO: Pass in default args }; export default meta; type Story = StoryObj<COMPONENT_PROPS>; // TODO: Replace COMPONENT_PROPS with the component props type export const Default: Story = {};
The text was updated successfully, but these errors were encountered:
mgadewoll
Successfully merging a pull request may close this issue.
Summary
Create Storybook playground stories for EUI components whose names start with the letters I, J, K, L. This is a part of #7405.
Components to create stories for:
Acceptance Criteria
TODO
comment for now insteadStory file template
The text was updated successfully, but these errors were encountered: