need help getting component to work #10764
Unanswered
JonathonRP
asked this question in
Q&A
Replies: 1 comment 1 reply
-
There is a higher chance of getting help by constructing a proper minimal reproduction first. It should be:
Also, code can be formatted with syntax highlighting by using fenced code blocks that specify a language. ```svelte
<script>
console.log('test');
</script>
<h1>Heading</h1>
``` Output: <script>
console.log('test');
</script>
<h1>Heading</h1> |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
this is the component I am working on, and seems to not be working as expected.
the point props should be a store updated by the style that is subscribed to by useTransfom and be returning a store as well.
Also effect doesn't seem to be firing every value change of subscriped value
repo: https://stackblitz.com/edit/sveltejs-kit-template-default-nsfarh?file=src%2Flib%2Fcomponents%2FReorder%2FItem.svelte
looking for some help to get this working.
Beta Was this translation helpful? Give feedback.
All reactions