@yandex/ui
Version:
Yandex UI components
9 lines (8 loc) • 464 B
JavaScript
import React from 'react';
import { Showcase } from '../../Showcase@touch-pad';
import { EXAMPLE_TOUCH_PAD_TOKEN, themes, parameters } from '../examples-config';
export default {
title: EXAMPLE_TOUCH_PAD_TOKEN,
parameters: parameters,
};
export var Default = function () { return (React.createElement("div", { style: { display: 'flex' } }, themes.map(function (theme, index) { return (React.createElement(Showcase, { key: index, theme: theme })); }))); };