+ client: add DNS privacy tab to setup guide

This commit is contained in:
Ildar Kamalov
2019-07-02 15:45:39 +03:00
committed by Simon Zolin
parent 425f3c87d0
commit 5c7c9964b8
8 changed files with 255 additions and 16 deletions

View File

@@ -27,12 +27,13 @@ class Tabs extends Component {
<div className="tabs">
<div className="tabs__controls">
{children.map((child) => {
const { label } = child.props;
const { label, title } = child.props;
return (
<Tab
key={label}
label={label}
title={title}
activeTab={activeTab}
onClick={this.onClickTabControl}
/>