TOBII
TOBII
Explore posts from servers
SSolidJS
Created by AesthetiCoder on 10/25/2023 in #support
Re render on filter in a for
This does not solve the actual problem, but you can use TransitionGroup, see https://github.com/solidjs-community/solid-transition-group
2 replies
SSolidJS
Created by TOBII on 7/28/2023 in #support
How do I export components as child objects in a JavaScript object?
Oops, my mistake, I applied Object.assign twice to the same function, so the sub component was overwritten 🤦‍♂️ Thanks for your answer anyway @otonashi9
4 replies
SSolidJS
Created by TOBII on 7/28/2023 in #support
How do I export components as child objects in a JavaScript object?
I already know that you can export a component like this:
export const Dialog = {
Root: DialogRoot,
Content: DialogContent
}
export const Dialog = {
Root: DialogRoot,
Content: DialogContent
}
but this is a bit impractical for the button, because I have to write Button.Root every time:
export const Button = {
Root: ButtonRoot,
Spinner: ButtonSpinner
}
export const Button = {
Root: ButtonRoot,
Spinner: ButtonSpinner
}
4 replies