A simple library to generate react forms from js objects.
This library is built for react only.
const loginForm = [
[
{type: 'email', name: 'email', placeholder: 'E-post', value: email, onChange: handleEmail}
],
[
{type: 'password', name: 'password', placeholder: 'Lösenord', value: password, onChange: handlePassword}
],
[
{type: 'submit', title: 'Logga in'},
]
];
return (
<Form>
renderForm(loginForm)
</Form>
);