import Header from './header'
import Container from 'react-bootstrap/Container'
import { LightningProvider } from './lightning'
import Footer from './footer'
import Seo from './seo'
import Search from './search'
export default function Layout ({
sub, noContain, noFooter, noFooterLinks,
containClassName, noSeo, children, search
}) {
return (
<>
{!noSeo && }
{noContain
? children
: (
{children}
)}
{!noFooter && }
{!noContain && search && }
>
)
}