How to avoid passing too many props?
I recently made a component with like 20 mandatory props. How could I have reduced them while keeping type safety?
2 Replies
provide default values for all props.
https://docs.solidjs.com/concepts/components/props#mergeprops
Or using a context, depending on what youre trying to do. Although 20 mandatory props sounds like this component is doing too much.