Replies: 1 comment
-
it looks like you're adding the at any rate, only known props can be added to components, otherwise, they will be treated as style props and go into the css. if you want to add arbitrary props to a component (and you know what you're doing), then you can pass a dict of |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi everyone,
I want to add attributes to a form, something like this in html:
<form class="css-0" name="form1" random_attribute>
But ussing reflex i didn't find the answer to this, for now i have this code:
As you can see i can create forms without problems, with this i create random numbers of alternative buttons depending of the question, but the problem is this:
When i run the server i just obtained a form class, nothing about name or others attributes that i wanna add, something like "
<form class="css-0">
".Do any of you knows any solution to this problem?
Beta Was this translation helpful? Give feedback.
All reactions