@divy-work/react-loading-text
v1.0.1
Published
Text based loading for your react apps.
Downloads
5
Readme
react-loading-text
A simple module to display all types of weird sentences while your application loads.
Installation
$ npm i @divy-work/react-loading-text
Usage
import React from 'react';
import LoadingText from 'react-loading-text';
class LoadingView extends React.Component {
render() {
return (
<LoadingText />
)
}
}
You can also specify additional statements and the interval time.
<LoadingText extras={["Another Loading Text", "One more!"]} interval={4000} />