Skip to content

Commit

Permalink
Docs: Fix Example
Browse files Browse the repository at this point in the history
  • Loading branch information
jonnitto committed Oct 22, 2024
1 parent 6f866dc commit 82441a5
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,15 +59,7 @@ function Editor({ id, isLoading }) {
setLoading(false);
}, []);

return (
<LoadingAnimation
id={id}
isLoading={isLoading}
delayTime={2000}
timeoutTime={7000}
heightMultiplier={2}
/>;
)
return <LoadingAnimation id={id} isLoading={isLoading} delayTime={2000} timeoutTime={7000} heightMultiplier={2} />;
}
```

Expand Down

0 comments on commit 82441a5

Please sign in to comment.