Skip to content

Latest commit

 

History

History
20 lines (15 loc) · 332 Bytes

README.md

File metadata and controls

20 lines (15 loc) · 332 Bytes

React Text Rotate Usage

So simple to use. First import ReactTextRotate and use it in your application.

import ReactTextRotate from 'react-text-rotate';

const App = () => {

  return (
    <ReactTextRotate
     texts={['You', 'are', 'awesome']}
     speed={1}
     period={2000}
    />
  );
};

Happy coding...