mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 20:51:07 +08:00
more tweaks to the snippets
This commit is contained in:
parent
8c58d6389e
commit
681725360a
@ -1,5 +1,5 @@
|
||||
```js
|
||||
// My-component_spec.js
|
||||
// MyComponent.spec.js
|
||||
|
||||
describe('My Component', () => {
|
||||
it('should respond to click on button with warning', () => {
|
||||
|
@ -1,5 +1,5 @@
|
||||
```js
|
||||
// Foo-Bar.stories.js
|
||||
// FooBar.stories.js
|
||||
|
||||
export default {
|
||||
title: 'Foo/Bar',
|
||||
|
@ -1,5 +1,5 @@
|
||||
```js
|
||||
// Foo-Bar.stories.js
|
||||
// FooBar.stories.js
|
||||
|
||||
export default {
|
||||
title: 'OtherFoo/Bar',
|
||||
|
@ -1,5 +1,5 @@
|
||||
```html
|
||||
<!-- .storybook/preview-body.html -->
|
||||
<!-- .storybook/preview-body.html -->
|
||||
|
||||
<style>
|
||||
body {
|
||||
|
@ -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” />
|
||||
|
@ -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];
|
||||
|
@ -1,5 +1,5 @@
|
||||
```ts
|
||||
// yourTheme.js
|
||||
// YourTheme.js
|
||||
|
||||
import { create } from '@storybook/theming/create';
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
```js
|
||||
// yourTheme.js
|
||||
// YourTheme.js
|
||||
|
||||
import { styled } from '@storybook/theming';
|
||||
```
|
@ -1,5 +1,5 @@
|
||||
```js
|
||||
// yourTheme.js
|
||||
// YourTheme.js
|
||||
|
||||
import { create } from '@storybook/theming/create';
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
```ts
|
||||
// button.stories.tsx
|
||||
// Button.stories.tsx
|
||||
|
||||
import React from 'react';
|
||||
import { Story, Meta } from '@storybook/react/types-6-0';
|
||||
|
@ -1,5 +1,6 @@
|
||||
```js
|
||||
// List.stories.js
|
||||
|
||||
import React from 'react';
|
||||
import List from './List';
|
||||
import ListItem from './ListItem';
|
||||
|
@ -1,5 +1,6 @@
|
||||
```js
|
||||
// List.stories.js
|
||||
|
||||
import React from 'react';
|
||||
import List from './List';
|
||||
|
||||
|
@ -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
|
||||
|
@ -1,5 +1,5 @@
|
||||
```js
|
||||
// your-page.stories.js
|
||||
// YourPage.stories.js
|
||||
|
||||
import React from 'react';
|
||||
import DocumentScreen from './DocumentScreen';
|
||||
|
@ -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';
|
||||
|
@ -1,5 +1,6 @@
|
||||
```ts
|
||||
// Page.stories.tsx
|
||||
|
||||
import React from 'react';
|
||||
import { Story, Meta } from '@storybook/react/types-6-0';
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
```js
|
||||
// your-page.js
|
||||
// YourPage.js
|
||||
|
||||
import React from 'react';
|
||||
import PageLayout from './PageLayout';
|
||||
|
@ -1,5 +1,5 @@
|
||||
```js
|
||||
// your-page.tsx
|
||||
// YourPage.tsx
|
||||
|
||||
import React from 'react';
|
||||
import PageLayout from './PageLayout';
|
||||
|
@ -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>]
|
||||
}
|
||||
```
|
@ -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>]
|
||||
}
|
||||
```
|
@ -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,
|
||||
|
Loading…
x
Reference in New Issue
Block a user