import HotkeysLabel from 'sentry/components/hotkeysLabel'; export default { title: 'Components/HotkeysLabel', argTypes: { platform: { options: ['macos', 'generic'], control: {type: 'radio'}, }, }, component: HotkeysLabel, }; export const Default = args => (
Fallback to entirely different key combination: No fallback for windows
); Default.args = { platform: 'macos', }; Default.storyName = 'HotkeysLabel'; Default.parameters = { docs: { description: { story: 'Render some cool keyboard keys', }, }, };