## The Problem - An error is thrown whenever I try to use pass in more than 1 argument to a "component" using the `<Component />` syntax. <img width="408" alt="Screenshot 2022-06-18 at 11 02 54" src="https://user-images.githubusercontent.com/39712415/174432948-1587266b-2134-4d0a-8b27-e62e3e5658be.png"> - This is the component <img width="418" alt="Screenshot 2022-06-18 at 11 02 37" src="https://user-images.githubusercontent.com/39712415/174432945-cc8679c3-25e0-4d2f-a914-8fb2978b3d5f.png"> - This is the error thrown <img width="356" alt="Screenshot 2022-06-18 at 11 11 11" src="https://user-images.githubusercontent.com/39712415/174433216-c993c727-15f9-4f84-81dc-368b6b7b5580.png"> - The only alternative is to render the component like this: <img width="419" alt="Screenshot 2022-06-18 at 11 12 28" src="https://user-images.githubusercontent.com/39712415/174433273-984e5d16-82a3-4278-89ba-0f7f2a9eb843.png"> ## Suggestion It would be nice if we could allow support for multiple arguments in the JSX syntax as well ``` <Range min={1} max={10} /> ``` Or let me know if there is a particular reason for this. Thanks