Updated some pages and layouts for navigation noSearch and showBackBtn

• Updated:
- some pages and layouts for navigation noSearch and showBackBtn
This commit is contained in:
mgabdev
2020-10-30 12:57:20 -05:00
parent 04cf1ad7ce
commit 73e1584d43
8 changed files with 5 additions and 23 deletions

View File

@@ -5,17 +5,10 @@ import SettingsLayout from '../layouts/settings_layout'
class SettingsPage extends React.PureComponent {
render() {
const {
children,
tabs,
title,
} = this.props
const { children, title } = this.props
return (
<SettingsLayout
title={title}
tabs={tabs}
>
<SettingsLayout title={title}>
{children}
</SettingsLayout>
)
@@ -25,7 +18,6 @@ class SettingsPage extends React.PureComponent {
SettingsPage.propTypes = {
children: PropTypes.node.isRequired,
tabs: PropTypes.array,
title: PropTypes.string,
}