Counselllor / Counsellor-Web

Avoid .bind() or local functions in JSX properties JS-0417
Performance
Major
1 occurrence in this check
JSX props should not use arrow functions
51   
52
53<Typewriter
54  onInit={(typewriter) => {55    typewriter56     .typeString("<span class='faq-header'>Frequently Asked Questions</span>")57     .pauseFor(1000)58     .deleteAll()59     .typeString("<span class='faq-header'>Frequently Asked Questions</span>")60     .typeString("<span class='cursor'>|||</span>", { cursor: true })61     .start();62     <span style={{63      color:'cyan'64     }}>65 <Cursor/>66     </span>67     }} 68 
69/>
70