Fix findBy story

This commit is contained in:
Gert Hengeveld 2021-11-24 21:32:25 +01:00
parent 3ae05d9de6
commit a061bcf758

View File

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