Upgrade packages

This commit is contained in:
Spencer Pincott
2022-08-11 00:10:20 -04:00
parent d2507dc8ae
commit 3ccef65f72
32 changed files with 25736 additions and 12140 deletions

16
src/pages/[...].js Normal file
View File

@@ -0,0 +1,16 @@
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;