react-code-dataset / react-use /stories /useDeepCompareEffect.story.tsx
Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import { storiesOf } from '@storybook/react';
import * as React from 'react';
import { useCounter, useDeepCompareEffect } from '../src';
import ShowDocs from './util/ShowDocs';
const Demo = () => {
const [countNormal, { inc: incNormal }] = useCounter(0);
const [countDeep, { inc: incDeep }] = useCounter(0);
const options = { max: 500 };
React.useEffect(() => {
if (countNormal < options.max) {
incNormal();
}
}, [options]);
useDeepCompareEffect(() => {
if (countNormal < options.max) {
incDeep();
}
}, [options]);
return (
<div>
<p>useEffect: {countNormal}</p>
<p>useDeepCompareEffect: {countDeep}</p>
</div>
);
};
storiesOf('Lifecycle/useDeepCompareEffect', module)
.add('Docs', () => <ShowDocs md={require('../docs/useDeepCompareEffect.md')} />)
.add('Demo', () => <Demo />);