PATH:
usr
/
local
/
n
/
versions
/
node
/
12.14.1
/
lib
/
node_modules
/
npm
/
docs
/
src
/
components
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
[-] navbar.js
[edit]
[-] links.js
[edit]
[+]
..
[-] MobileSidebar.js
[edit]
[-] DocLinks.js
[edit]
[-] FoundTypo.js
[edit]
[+]
home
[-] layout.js
[edit]
[-] Button.js
[edit]
[-] Accordion.js
[edit]
[-] Sidebar.js
[edit]
[-] scripts.js
[edit]
[-] seo.js
[edit]