Migrate to Netlify Today

Netlify announces the next evolution of Gatsby Cloud. Learn more

ContactSign Up

Life After Layouts

Jason Lengstorf
June 19th, 2018

So the Gatsby V2 beta is out, and Gatsby's layout components are going away. What does this mean for your projects?

This article will dive into the Gatsby V2's approach to layouts, talk about what changed and why, and walk through the migration process to get your existing projects updated to V2.

If you still need the v1 layout behavior, checkout gatsby-plugin-layout.

What changed?

In Gatsby V1, layouts were a special kind of component that automagically wrapped generated page components. They were stored in src/layouts/, and received a prop called children that needed to be executed as a function.

How it works in Gatsby V1

A simple layout would live at src/layouts/index.js and might contain the following code:

Our app also might have a home page at src/pages/index.js that looks like this:

Once we start the app, we’ll see the following in the browser console:

Screenshot of the generated markup with the layout wrapper around the page content

Like magic, our page is wrapped with the .app-wrapper container.

If you'd like to try out this app, check out the v1-layout branch of the demo repo.

How it works in Gatsby V2

In V2, layouts are no longer automatically applied to our pages (more on why this decision was made in the next section).

This ultimately boils down to two breaking changes and one recommendation:

  1. BREAKING CHANGE: Components at src/layouts/ are no longer automagically wrapped around page components.
  2. BREAKING CHANGE: The children prop in our layout components is no longer a function (unless you explicitly provide a function).
  3. We now recommend moving your layout components alongside the rest of your components (e.g. into src/components/).

If we upgrade our simplified app by running yarn add gatsby react react-dom (see the V1 => V2 migration guide for more information on why we need to install React here), we need to upgrade our layout by moving src/layouts/index.js to src/components/layout.js and changing children from a function to a regular prop:

Next, in src/pages/index.js we need to explicitly include the Layout component and wrap our page in it:

Once we've made these changes, we can run yarn develop and see the updated layout in our browser:

Screenshot of the updated layout in the browser

Check out the v2-layout branch of the demo repo to see this in action, or see the diff for details on exactly what changed.

Why change the layouts?

Looking at the difference in code, it might be tempting to think, "Doesn't that just create more work for developers who want to use layouts?"

In short, the decision to remove layouts was part of an effort to reduce unnecessary complexity and mystery issues in Gatsby projects.

What was the unnecessary complexity?

Because layouts in V1 were applied under the hood, it made it really hard to pass data between the layout and the pages it wrapped.

In short, layouts in V1 broke React's compositional model, and that made things unnecessarily hard to implement. By going back to the standard React way of importing components and using them directly, we're able to easily pass data between the layout and pages without any confusing, complicated, or otherwise unwieldy workarounds.

What are mystery issues?

In V1, if something breaks on your page, you'd likely go to the page, look through the code, and try to spot the bug. But what if the bug is in the magic layout component? That component isn't referenced anywhere on the page, and if you don't already know that Gatsby V1 wraps pages with layouts, it's pretty difficult to figure out what's going on.

Because Gatsby is doing things in the background, out of sight of the developers building the site, we're creating a mystery: where the hell did this bug come from if all the code I can see doesn't have the bug?

By removing the magic and making layouts an explicit dependency in V2, that same bug would be much easier to spot because there's a clear link between our page code and the layout.

Why is this better?

Our goal at Gatsby is to make building great apps more fun and less frustrating — and very few things are more frustrating than mystery bugs.

This change reduces the number of mysteries in your Gatsby projects, and makes debugging a little simpler.

What else is changing?

Removing layouts isn't the only improvement coming in Gatsby V2. We're really excited to introduce a lot of new and exciting features, such as:

  • Much faster hot reloading, which enables Ludicrous Mode
  • We can now add GraphQL queries to any component in our app (not just page components) using StaticQuery
  • Upgraded to the latest versions of React, Babel, webpack, and other libraries Gatsby depends on
  • Better support for CSS inlining and splitting, which will boost performance

For a full list of what's new, check out our V2 migration guide and What’s New in Gatsby V2?.

What's next?

  • You can get started using Gatsby V2 right now by installing our V2 default starter:

Huge thanks to Yuki Takemoto for upgrading the starter to V2!

We can't wait to see what you build with this new and improved version of Gatsby!

Share on TwitterShare on LinkedInShare on FacebookShare via Email

Developer. Occasional designer. Process and culture architect. Mediocre bartender. Blogs at lengstorf.com

Follow Jason Lengstorf on Twitter

Tagged with NoneView all Tags

Talk to our team of Gatsby Experts to supercharge your website performance.

Contact Gatsby Now
© 2023 Gatsby, Inc.