Building with Components
Last updated
Last updated
To use Gatsby, you will need a basic understanding of React components.
The is a good place to start.
React’s component architecture simplifies building large websites by encouraging modularity, reusability, and clear abstractions. React has a large ecosystem of open source components, tutorials, and tooling that can be used seamlessly for building sites with Gatsby. Gatsby is built to behave almost exactly like a normal React application.
The following model shows how data from a source can be queried by GraphQL for use inside components in the process of building a Gatsby site:ContentBuildDataViewAppsrc/pages/homepage.js
Your components can pull in whatever data they need from any source in the data layer.
Everything in Gatsby is built using components.
A basic directory structure of a project might look like this:
Components under src/pages
become pages automatically with paths based on their file name. For example src/pages/index.js
is mapped to yoursite.com
and src/pages/about.js
becomes yoursite.com/about/
. Every .js
or .jsx
file in the pages directory must resolve to either a string or react component, otherwise your build will fail.
Example:src/pages/about.js
You can programmatically create pages using “page template components”. All pages are React components but very often these components are just wrappers around data from files or other sources.
src/templates/post.js
is an example of a page component. It queries GraphQL for markdown data and then renders the page using this data.
Example:src/templates/post.js
src/html.js
is responsible for everything other than where Gatsby lives in the <body />
.
In this file, you can modify the <head>
metadata and general structure of the document and add external links.
Typically you should omit this from your site as the default html.js
file will suffice. If you need more control over server rendering, then it’s valuable to have an html.js
.
Example:src/html.js
React powers components in Gatsby sites that are , whatever you can do in React you can do with Gatsby.
is a good resource for learning how to structure applications with React.
See of the tutorial for a detailed introduction to programmatically creating pages.
These are examples of the different ways React components are used in Gatsby sites. To see full working examples, check out the in the Gatsby repo.
A Non-page component is one that’s embedded inside some other component, forming a component hierarchy. An example would be a Header component that’s included in multiple page components. Gatsby uses GraphQL to enable components to declare the data they need. Using the component or , you can colocate a non-page component with its data.\