import React from 'react'; import PropTypes from 'prop-types'; import { Link } from 'react-router-dom'; import { withPageConfig } from './../../../components/Layout/withPageConfig'; import { Container, } from './../../../components'; class NavbarOnly extends React.Component { static propTypes = { pageConfig: PropTypes.object }; componentDidMount() { const { pageConfig } = this.props; pageConfig.setElementsVisibility({ sidebarHidden: true }); } componentWillUnmount() { const { pageConfig } = this.props; pageConfig.setElementsVisibility({ sidebarHidden: false }); } render() { return (

Welcome to the "Airframe" Admin Dashboard Theme based on Bootstrap 4.x version for React called  reactstrap - easy to use React Bootstrap 4 components compatible with React 16+.

Layouts for this framework:
This Starter has:
Other versions for "Airframe":
Work Orders:

Regarding configuration, changes under client's requirements.
Pleace contact us through the webkom.co/contact website.

); } } const ExtendedNavbarOnly = withPageConfig(NavbarOnly); export { ExtendedNavbarOnly as NavbarOnly };