import * as React from "react"; import Typist from "react-typist"; class ReactTypist extends React.Component { state = { renderMsg: false }; onHeaderTyped = () => { this.setState({ renderMsg: true }); } render() { const docs = "//github.com/jstejada/react-typist"; return (
React Typist
{this.state.renderMsg ? ( * Easy to style
* Easy to customize
* Easy to use backp sace space
*{" "} docs
{""}
) : null}
); } }