mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 22:11:15 +08:00
FIX cra-example
This commit is contained in:
parent
ad4b080d50
commit
48eaece0ac
@ -1,5 +1,6 @@
|
||||
import React from 'react';
|
||||
import { forceReRender } from '@storybook/react';
|
||||
import { Button } from '@storybook/react/demo';
|
||||
|
||||
let count = 0;
|
||||
const increment = () => {
|
||||
@ -11,7 +12,7 @@ export default {
|
||||
title: 'Force ReRender',
|
||||
};
|
||||
|
||||
export const Button = () => (
|
||||
export const DefaultView = () => (
|
||||
<Button type="button" onClick={increment}>
|
||||
Click me to increment: {count}
|
||||
</Button>
|
||||
|
@ -1,24 +0,0 @@
|
||||
import React from 'react';
|
||||
|
||||
import { storiesOf } from '@storybook/react';
|
||||
|
||||
import { Button } from '@storybook/react/demo';
|
||||
|
||||
for (let i = 0; i < 1; i += 1) {
|
||||
const randomDemoName = Math.random()
|
||||
.toString(36)
|
||||
.substring(7);
|
||||
const stories = storiesOf(`Perf.${randomDemoName}`);
|
||||
|
||||
for (let j = 0; j < 10; j += 1) {
|
||||
stories
|
||||
.add(`with text ${j}`, () => <Button>Hello Button</Button>)
|
||||
.add(`with emoji ${j}`, () => (
|
||||
<Button>
|
||||
<span role="img" aria-label="so cool">
|
||||
😀 😎 👍 💯
|
||||
</span>
|
||||
</Button>
|
||||
));
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user