how to make tab indent in textarea react code example
Example: css permit tabs on textarea react
<ConfigurationInput onKeyDown={e => {
if ( e.key === 'Tab' && !e.shiftKey ) {
document.execCommand('insertText', false, "\t");
e.preventDefault();
return false;
}}}/>