import Sticky from 'react-stickynode' import * as Constants from '../constants' import Search from '../components/search' import ColumnHeader from '../components/column_header' import Sidebar from '../components/sidebar' // import Header from '../components/header' // import Footer from '../components/footer' import Responsive from '../features/ui/util/responsive_component' export default class DefaultLayout extends PureComponent { static propTypes = { actions: PropTypes.array, tabs: PropTypes.array, layout: PropTypes.object, title: PropTypes.string, showBackBtn: PropTypes.bool, } render() { const { children, title, showBackBtn, layout, actions, tabs } = this.props // const shouldHideFAB = path => path.match(/^\/posts\/|^\/search|^\/getting-started/); // const floatingActionButton = shouldHideFAB(this.context.router.history.location.pathname) ? null : ; console.log("Constants.BREAKPOINT_EXTRA_SMALL:", Constants.BREAKPOINT_EXTRA_SMALL) return (