diff --git a/docs/getting-started-with-react/getting-started-with-react.stories.mdx b/docs/getting-started-with-react/getting-started-with-react.stories.mdx
index 2256f5bda7..08d6e0c21b 100644
--- a/docs/getting-started-with-react/getting-started-with-react.stories.mdx
+++ b/docs/getting-started-with-react/getting-started-with-react.stories.mdx
@@ -8,9 +8,7 @@ import { getGIF, loadingGIF } from "./getGIF";
-# Getting Started with React
-
-## Things to know.
+# Getting started with React
## What is React
@@ -18,7 +16,7 @@ At its core React is simply a JavaScript view library layer. It provides us with
a way to define and render view components. It also aids with tracking and
re-rendering changes to data that the components are representing.
-## What is a Component
+## What is a component
Much as a function in programing allows you to encapsulate, test and reuse logic
a React Component allows you to encapsulate, test and reuse pieces of your UI.
@@ -64,7 +62,7 @@ There are a few things going on in the example above. Lets break them down:
| `{ text, yell }: MessageProps` | There are two parts to this. Starting on the right `MessageProps` indicates that this funciton takes a parameter of type `MessageProps`. On the left the `{ text, yell }` unpacks the parameter into local variables. |
| `return
{text}
` | Every React component will return an [element](https://reactjs.org/docs/rendering-elements.html) or [fragment](https://reactjs.org/docs/fragments.html). (Note the [fragment short hand syntax](https://reactjs.org/docs/fragments.html#short-syntax).) |
-## It's Components All the Way Down
+## It's components all the way down
In React everything is a component. A typical page will consist of one top level
component representing the main view. Then within that page you will break down
@@ -79,7 +77,7 @@ smaller components. Brad Frost covers this break down very well with
When you are writing a front end using React each of the levels he talks about
are represented by components functions.
-## Composing Components
+## Composing components
As mentioned above a lot of the power of React comes from being able to build
components out of other components. Lets take a look at an example on how to do
@@ -89,7 +87,7 @@ For this example we are going to build a card that allows you to enter a topic
and then search for a related gif.