storybook/docs/snippets/common/storybook-main-ref-local.js.mdx
2020-08-10 19:23:38 +01:00

17 lines
262 B
Plaintext

```js
//.storybook/main.js
module.exports = {
// your Storybook configuration
refs: {
react: {
title: 'React',
url: 'http://localhost:7007',
},
angular: {
title: 'Angular',
url: 'http://localhost:7008',
},
},
};
```