mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
Fix findBy story
This commit is contained in:
parent
3ae05d9de6
commit
a061bcf758
@ -40,7 +40,7 @@ Demo.play = async ({ args, canvasElement }) => {
|
||||
export const FindBy: CSF2Story = (args) => {
|
||||
const [isLoading, setIsLoading] = React.useState(true);
|
||||
React.useEffect(() => {
|
||||
setTimeout(() => setIsLoading(false), 1500);
|
||||
setTimeout(() => setIsLoading(false), 500);
|
||||
}, []);
|
||||
return isLoading ? <div>Loading...</div> : <button type="button">Loaded!</button>;
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user