JSFiddle - React, Tailwind, and code Playground

by Eugeny Venegrad

CSS

body {
  background-color: #000;
}

Babel + JSX

var fields = [
    {
        element: "email",
        required: true,
        type: "email"
    },
    {
        element: "profile_manager.first_name",
        required: true
    }
]


export async function formInsert(jsonValue, t) {
    var json = JSON.parse(jsonValue);
    await inputAction.typeText(t, json[0].element, "123132123123123123");
}