Skip to content

Commit

Permalink
Fix grammar in index.md (#7001)
Browse files Browse the repository at this point in the history
Fix grammar in index.md
  • Loading branch information
ndelangen authored and shilman committed Jun 10, 2019
1 parent 6ded779 commit cd7b027
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/src/pages/configurations/default-config/index.md
Expand Up @@ -3,7 +3,7 @@ id: 'default-config'
title: 'Default Config'
---

Let's learn about the default config comes with Storybook.
Let's learn about the default config that comes with Storybook.

## Babel

Expand Down Expand Up @@ -198,7 +198,7 @@ import { storiesOf } from '@storybook/react';
import imageFile from './static/image.png';

storiesOf('<img />', module)
.add('with a image', () => (
.add('with an image', () => (
<img src={imageFile} alt="covfefe" />
));
```
Expand All @@ -211,7 +211,7 @@ So, this is a good approach to loading all of your static content.
### JSON Loader

You can import `.json` files, as you do with Node.js.
This will also allow you to use NPM projects, which imports `.json` files inside them.
This will also allow you to use NPM projects that import `.json` files inside them.

```js
import React from 'react';
Expand Down

0 comments on commit cd7b027

Please sign in to comment.