JSFiddle - React, Tailwind, and code Playground
by Yomi Eluwande
Babel + JSX
const DisplayFormikState = props =>
<div style={{ margin: '1rem 0', background: '#f6f8fa', padding: '.5rem' }}>
<strong>Injected Formik props (the form's state)</strong>
<div>
<code>errors:</code> {JSON.stringify(props.errors, null, 2)}
</div>
<div>
<code>values:</code> {JSON.stringify(props.values, null, 2)}
</div>
<div>
<code>isSubmitting:</code> {JSON.stringify(props.isSubmitting, null, 2)}
</div>
</div>;