Skip to content

Commit

Permalink
Merge pull request #1211 from Li0liQ/master
Browse files Browse the repository at this point in the history
Fixed references to storybook.js.org.
  • Loading branch information
danielduan authored Jun 7, 2017
2 parents 328248b + 8d56f83 commit bce5716
Show file tree
Hide file tree
Showing 10 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## v.Next

- Deprecated `{ linkTo, action }` as built-in addons: <https://github.com/storybooks/storybook/issues/1017>. From 3.0 use them as you would [any other addon](https://storybook.js.org/docs/react-storybook/addons/using-addons/).
- Deprecated `{ linkTo, action }` as built-in addons: <https://github.com/storybooks/storybook/issues/1017>. From 3.0 use them as you would [any other addon](https://storybook.js.org/addons/using-addons/).

Before:

Expand Down
2 changes: 1 addition & 1 deletion app/react-native/src/server/addons.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ import '@storybook/addon-links/register';

deprecate(
() => {},
'@storybook/react-native/addons is deprecated. See https://storybook.js.org/docs/react-storybook/addons/using-addons/'
'@storybook/react-native/addons is deprecated. See https://storybook.js.org/addons/using-addons/'
)();
10 changes: 5 additions & 5 deletions app/react/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ For more information visit: [storybook.js.org](https://storybook.js.org)

* * *

Storybook also comes with a lot of [addons](https://storybook.js.org/docs/react-storybook/addons/introduction) and a great API to customize as you wish.
You can also build a [static version](https://storybook.js.org/docs/react-storybook/basics/exporting-storybook) of your storybook and deploy it anywhere you want.
Storybook also comes with a lot of [addons](https://storybook.js.org/addons/introduction) and a great API to customize as you wish.
You can also build a [static version](https://storybook.js.org/basics/exporting-storybook) of your storybook and deploy it anywhere you want.

Here are some featured storybooks that you can reference to see how Storybook works:

Expand All @@ -41,6 +41,6 @@ If you are using Typescript, make sure you have the type definitions installed v

## Docs

- [Basics](https://storybook.js.org/docs/react-storybook/basics/introduction)
- [Configurations](https://storybook.js.org/docs/react-storybook/configurations/default-config)
- [Addons](https://storybook.js.org/docs/react-storybook/addons/introduction)
- [Basics](https://storybook.js.org/basics/introduction)
- [Configurations](https://storybook.js.org/configurations/default-config)
- [Addons](https://storybook.js.org/addons/introduction)
2 changes: 1 addition & 1 deletion app/react/addons.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ import '@storybook/addon-links/register';

deprecate(
() => {},
'@storybook/react/addons is deprecated. See https://storybook.js.org/docs/react-storybook/addons/using-addons/'
'@storybook/react/addons is deprecated. See https://storybook.js.org/addons/using-addons/'
)();
2 changes: 1 addition & 1 deletion app/react/demo/src/stories/Welcome.js
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ export default class Welcome extends React.Component {
{' '}
<a
style={styles.link}
href="https://storybook.js.org/docs/react-storybook/basics/writing-stories"
href="https://storybook.js.org/basics/writing-stories"
target="_blank"
>
Writing Stories
Expand Down
2 changes: 1 addition & 1 deletion examples/cra-storybook/src/stories/Welcome.js
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ export default class Welcome extends React.Component {
{' '}
<a
style={styles.link}
href="https://storybook.js.org/docs/react-storybook/basics/writing-stories"
href="https://storybook.js.org/basics/writing-stories"
target="_blank"
rel="noopener noreferrer"
>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ exports[`Storyshots Welcome to Storybook 1`] = `
Have a look at the
<a
href="https://storybook.js.org/docs/react-storybook/basics/writing-stories"
href="https://storybook.js.org/basics/writing-stories"
rel="noopener noreferrer"
style={
Object {
Expand Down
2 changes: 1 addition & 1 deletion examples/test-cra/src/stories/Welcome.js
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ export default class Welcome extends React.Component {
{' '}
<a
style={styles.link}
href="https://storybook.js.org/docs/react-storybook/basics/writing-stories"
href="https://storybook.js.org/basics/writing-stories"
target="_blank"
rel="noopener noreferrer"
>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ export default class Welcome extends React.Component {
{' '}
<a
style={styles.link}
href="https://storybook.js.org/docs/react-storybook/basics/writing-stories"
href="https://storybook.js.org/basics/writing-stories"
target="_blank"
rel="noopener noreferrer"
>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// you can use this file to add your custom webpack plugins, loaders and anything you like.
// This is just the basic way to add additional webpack configurations.
// For more information refer the docs: https://storybook.js.org/docs/react-storybook/configurations/custom-webpack-config
// For more information refer the docs: https://storybook.js.org/configurations/custom-webpack-config

// IMPORTANT
// When you add this file, we won't add the default configurations which is similar
Expand Down

0 comments on commit bce5716

Please sign in to comment.