Here Massage is props that manage a state and changing from a click event handeler function.
function Monitor({ Massage }) {
return (
<Typewriter
options={{
strings: Massage,
autoStart: true
}}
/>
);
}
export default Monitor;
When I click, string change but it fully despairs first then start typing from scratch. It will be cool when it's deleting first then add a new string. Please consider it for the next update. Thanks for the packege.
Here Massage is props that manage a state and changing from a click event handeler function. function Monitor({ Massage }) { return ( <Typewriter options={{ strings: Massage, autoStart: true }} /> ); } export default Monitor;
When I click, string change but it fully despairs first then start typing from scratch. It will be cool when it's deleting first then add a new string. Please consider it for the next update. Thanks for the packege.