how to use react typed js

Solutions on MaxInterview for how to use react typed js by the best coders in the world

showing results for - "how to use react typed js"
Pietro
25 May 2018
1yarn add react-typed        #or npm install react-typed --save
Josefa
27 Mar 2017
1import React,{ Component } from 'react';import { render } from 'react-dom';import Typed from 'react-typed'class MyComponent extends Component {    render() {        return (            <div>                <Typed                    strings={['Here you can find anything']}                    typeSpeed={40}                />                <br/>                 <Typed                strings={[                    'Search for products',                    'Search for categories',                    'Search for brands']}                    typeSpeed={40}                    backSpeed={50}                    attr="placeholder"                    loop >                    <input type="text"/>                </Typed>            </div>        );    }} render(    <MyComponent/>,    document.getElementById('app'),);