-
-
Notifications
You must be signed in to change notification settings - Fork 227
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Qwik js support #132
Comments
Happy to accept a PR for it |
PR #142 |
I created a new PR #144 |
I saw a merge Removes Qwik from documentation. Why? It works wonderfully with Qwik. A simple example looks like :- export default component$(() => {
const parentDivRef = useSignal<HTMLDivElement>();
useVisibleTask$(() => {
if (parentDivRef.value) {
autoAnimate(parentDivRef.value);
}
});
return (
<div ref={parentDivRef}>
And this stuff animates
</div> Please add it back 🙏🏻 |
I want to test it in my Qwik app, so when it will be added back? |
If the issues in #144 are resolved then it will be added back. Last I checked that PR did not lead to a working project when you built, even with a fresh version of Qwik. The function API ( |
No description provided.
The text was updated successfully, but these errors were encountered: