UNPKG

@yandex/ui

Version:

Yandex UI components

13 lines (12 loc) 552 B
import React from 'react'; import { text, object } from '@storybook/addon-knobs'; import { TabsPanes } from '@yandex-lego/components/TabsPanes/desktop/bundle'; export var Playground = function () { var activeTab = text('activeTab', 'search'); var panes = object('panes', [ { id: 'search', content: 'Поиск content' }, { id: 'images', content: 'Картинки content' }, { id: 'video', content: 'Видео content' }, ]); return React.createElement(TabsPanes, { activePane: activeTab, panes: panes }); };