1.0.1 • Published 4 years ago

@divy-work/react-loading-text v1.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
4 years ago

react-loading-text

npm.io

A simple module to display all types of weird sentences while your application loads.

React CI

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} />