Fix svelte example?

This commit is contained in:
Michael Shilman 2020-03-11 09:35:00 +08:00
parent 7bccc34944
commit b4f1a20145
7 changed files with 11 additions and 15 deletions

View File

@ -1,8 +0,0 @@
/* eslint-disable import/no-extraneous-dependencies */
import { addParameters } from '@storybook/svelte';
import { DocsPage, DocsContainer } from '@storybook/addon-docs/blocks';
addParameters({
docsContainer: DocsContainer,
docs: DocsPage,
});

View File

@ -1 +0,0 @@
module.exports = require('../dist/frameworks/svelte/config');

View File

@ -1 +0,0 @@
module.exports = require('../dist/frameworks/common/index');

View File

@ -1 +0,0 @@
module.exports = require('../dist/frameworks/common/makePreset').default('svelte');

View File

@ -5,6 +5,12 @@ module.exports = {
addons: [
'@storybook/addon-storysource',
'@storybook/addon-actions',
{
name: '@storybook/addon-docs',
options: {
configureJSX: true,
},
},
'@storybook/addon-links',
'@storybook/addon-knobs',
'@storybook/addon-backgrounds',

View File

@ -1 +0,0 @@
module.exports = ['@storybook/addon-docs/svelte/preset'];

View File

@ -15,7 +15,7 @@ How you like them apples?!
Just like in React, we first declare our component.
<Meta title="Addon|Docs" />
<Meta title="Addon/Docs" />
## CSF stories
@ -41,7 +41,7 @@ export const square = () => ({
## MDX stories
Amd here's how it looks in MDX:
Amd here's how `rounded` looks in MDX:
<Story name="rounded">
{{
@ -53,6 +53,8 @@ Amd here's how it looks in MDX:
}}
</Story>
And `square`:
<Story name="square">
{{
Component: ButtonView,
@ -65,7 +67,7 @@ Amd here's how it looks in MDX:
## More info
For more info, check out the [Storybook Docs Technical Preview](https://docs.google.com/document/d/1un6YX7xDKEKl5-MVb-egnOYN8dynb5Hf7mq0hipk8JE/edit?usp=sharing).
For more info, check out the [Storybook Docs README](https://github.com/storybookjs/storybook/tree/next/addons/docs).
We want your feedback to help make this more useful.