Kentico/gatsby-source-kontent

View on GitHub
examples/navigation/src/components/layout.js

Summary

Maintainability
A
0 mins
Test Coverage
import React from "react"
import Menu from "./complex-menu"

const Layout = ({ children, title }) => {
  return (
    <>
      <Menu />
      {title && (
        <header>
          <h1>{title}</h1>
        </header>
      )}
      <main>{children}</main>
    </>
  )
}

export default Layout