Component that performs the effect of writing
$ npm add react-text-typing
//  OR
$ yarn add react-text-typingimport React from 'react';
import ReactDOM from 'react-dom';
import Text from 'react-text-typing';
const App = () => (
  <Text
    text="Example Text"
    showBlink={true}
    component="h1"
  />
);
ReactDOM.render(<App />, document.getElementById('root'));Licensed under MIT
