mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 05:01:11 +08:00
24 lines
819 B
TypeScript
24 lines
819 B
TypeScript
import React from 'react';
|
|
|
|
export default {
|
|
title: 'UI/Addon Panel',
|
|
};
|
|
|
|
export const AllAddons = () => <div>By default all addon panels are rendered</div>;
|
|
|
|
/*
|
|
TODO: this story currently breaks the whole Storybook UI (including the manager).
|
|
Current findings:
|
|
- Only happens when actions below are disabled, not when a11y is.
|
|
- Is related to panels and addon tabs.
|
|
- Commenting out code/lib/components/src/tabs/tabs.tsx#L186 fixes the issue.
|
|
- ... this line: {list.map(({ id, active, render }) => render({ key: id, active }))}
|
|
- The error is most likely the shenanigans we do at code/lib/components/src/tabs/tabs.tsx#childrenToList
|
|
|
|
export const FilteredAddons = () => <div>By default all addon panels are rendered</div>;
|
|
FilteredAddons.parameters = {
|
|
a11y: { disable: true },
|
|
actions: { disable: true },
|
|
};
|
|
*/
|