mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 23:21:15 +08:00
20 lines
385 B
JavaScript
20 lines
385 B
JavaScript
import React from 'react';
|
|
import { forceReRender } from '@storybook/react';
|
|
import { Button } from '../components/react-demo';
|
|
|
|
let count = 0;
|
|
const increment = () => {
|
|
count += 1;
|
|
forceReRender();
|
|
};
|
|
|
|
export default {
|
|
title: 'Force ReRender',
|
|
};
|
|
|
|
export const DefaultView = () => (
|
|
<Button type="button" onClick={increment}>
|
|
Click me to increment: {count}
|
|
</Button>
|
|
);
|