more tweaks to the snippets

This commit is contained in:
jonniebigodes 2020-08-18 17:30:56 +01:00
parent 8c58d6389e
commit 681725360a
21 changed files with 24 additions and 19 deletions

View File

@ -1,5 +1,5 @@
```js
// My-component_spec.js
// MyComponent.spec.js
describe('My Component', () => {
it('should respond to click on button with warning', () => {

View File

@ -1,5 +1,5 @@
```js
// Foo-Bar.stories.js
// FooBar.stories.js
export default {
title: 'Foo/Bar',

View File

@ -1,5 +1,5 @@
```js
// Foo-Bar.stories.js
// FooBar.stories.js
export default {
title: 'OtherFoo/Bar',

View File

@ -1,5 +1,5 @@
```html
<!-- .storybook/preview-body.html -->
<!-- .storybook/preview-body.html -->
<style>
body {

View File

@ -1,5 +1,5 @@
```html
<!-- .storybook/preview-head.html -->
<!-- .storybook/preview-head.html -->
<!-- Pull in static files served from your Static director or the internet -->
<link rel=”preload” href=”your/font” />

View File

@ -1,7 +1,7 @@
```js
// .storybook/preview.js
import { decorator } from '../__mocks/isomorphic-fetch';
import { decorator } from '../__mocks__/isomorphic-fetch';
// Add the decorator to all stories
export const decorators = [decorator];

View File

@ -1,5 +1,5 @@
```ts
// yourTheme.js
// YourTheme.js
import { create } from '@storybook/theming/create';

View File

@ -1,5 +1,5 @@
```js
// yourTheme.js
// YourTheme.js
import { styled } from '@storybook/theming';
```

View File

@ -1,5 +1,5 @@
```js
// yourTheme.js
// YourTheme.js
import { create } from '@storybook/theming/create';

View File

@ -1,5 +1,5 @@
```ts
// button.stories.tsx
// Button.stories.tsx
import React from 'react';
import { Story, Meta } from '@storybook/react/types-6-0';

View File

@ -1,5 +1,6 @@
```js
// List.stories.js
import React from 'react';
import List from './List';
import ListItem from './ListItem';

View File

@ -1,5 +1,6 @@
```js
// List.stories.js
import React from 'react';
import List from './List';

View File

@ -1,5 +1,6 @@
```ts
// List.stories.tsx
import React from 'react';
import { List, ListProps} from './List';
// Instead of importing the ListItem, we import its stories

View File

@ -1,5 +1,5 @@
```js
// your-page.stories.js
// YourPage.stories.js
import React from 'react';
import DocumentScreen from './DocumentScreen';

View File

@ -1,5 +1,5 @@
```js
// your-page.stories.js
// YourPage.stories.js
import React from 'react';
import { Story, Meta } from '@storybook/react/types-6-0';

View File

@ -1,5 +1,6 @@
```ts
// Page.stories.tsx
import React from 'react';
import { Story, Meta } from '@storybook/react/types-6-0';

View File

@ -1,5 +1,5 @@
```js
// your-page.js
// YourPage.js
import React from 'react';
import PageLayout from './PageLayout';

View File

@ -1,5 +1,5 @@
```js
// your-page.tsx
// YourPage.tsx
import React from 'react';
import PageLayout from './PageLayout';

View File

@ -1,8 +1,8 @@
```js
// your-component.stories.js
// YourComponent.stories.js
export default {
component: your-component,
component: YourComponent,
decorators: [(Story) => <div style={{ margin: '3em' }}><Story/></div>]
}
```

View File

@ -1,8 +1,8 @@
```ts
// your-component.stories.tsx
// YourComponent.stories.tsx
export default {
component: your-component,
component: YourComponent,
decorators: [(Story) => <div style={{ margin: '3em' }}><Story/></div>]
}
```

View File

@ -2,8 +2,9 @@
// YourComponent.stories.tsx
import React from 'react';
import YourComponent from './your-component.component';
import { YourComponent } from './YourComponent';
// This default export determines where you story goes in the story list
export default {
title: 'YourComponent',
component: YourComponent,