Skip to content

Commit

Permalink
fix path in guide
Browse files Browse the repository at this point in the history
  • Loading branch information
Quramy committed Jan 7, 2018
1 parent c419955 commit 837f455
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/src/pages/basics/guide-angular/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,19 +63,19 @@ To do that, simply create a file at `.storybook/config.js` with the following co
import { configure } from '@storybook/angular';

function loadStories() {
require('../stories/index.ts');
require('../src/stories/index.ts');
}

configure(loadStories, module);
```

That'll load stories in `../stories/index.ts`.
That'll load stories in `../src/stories/index.ts`.

Just like that, you can load stories from wherever you want to.

## Write your stories

Now you can write some stories inside the `../stories/index.ts` file, like this:
Now you can write some stories inside the `../src/stories/index.ts` file, like this:

```js
import { storiesOf } from '@storybook/angular';
Expand Down

0 comments on commit 837f455

Please sign in to comment.