FIX cra-example

This commit is contained in:
Norbert de Langen 2019-12-10 11:20:56 +01:00
parent ad4b080d50
commit 48eaece0ac
No known key found for this signature in database
GPG Key ID: 976651DA156C2825
2 changed files with 2 additions and 25 deletions

View File

@ -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>

View File

@ -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>
));
}
}