@yandex/ui
Version:
Yandex UI components
9 lines (8 loc) • 352 B
JavaScript
import React from 'react';
import { Header } from '@yandex-lego/components/Header';
export var Playground = function () {
return (React.createElement(React.Fragment, null,
React.createElement(Header, null),
React.createElement("br", null),
React.createElement(Header, { logo: "logo", actions: "actions" }, "children")));
};