Files
sol-journal/src/pages/[...].js
Spencer Pincott 3ccef65f72 Upgrade packages
2022-08-11 00:10:20 -04:00

17 lines
408 B
JavaScript

import React from "react"
import App from "components/App"
import Layout from "components/Layout"
/* similar to create-react-app, the App.js is like the
entrypoint to the protected/client only content,
Context providers are moved to gatsby-browser.js
to wrap the root element with necessary providers
and context */
const app = () => (
<Layout>
<App />
</Layout>
)
export default app;