AlkantarClanX12

Your IP : 3.144.103.20


Current Path : /opt/alt/alt-nodejs12/root/lib/node_modules/npm/docs/src/components/
Upload File :
Current File : //opt/alt/alt-nodejs12/root/lib/node_modules/npm/docs/src/components/layout.js

import React from 'react'
import Navbar from './navbar'
import Sidebar from './Sidebar'
import {Flex, Box} from 'rebass'
import { theme } from 'src/theme'
import { ThemeProvider } from 'styled-components'

const IS_STATIC = process.env.GATSBY_IS_STATIC

const Layout = ({children, path}) => {
  const showSidebar = IS_STATIC || path.match(/cli-commands|configuring-npm|using-npm/)

  return (
    <ThemeProvider theme={theme}>
      <Navbar />
      <Flex w={1}>
        {showSidebar && <Sidebar />}
        <Box width={1}>{children}</Box>
      </Flex>
    </ThemeProvider>
  )
}

export default Layout