@divy-work/react-loading-text

Text based loading for your react apps.

Usage no npm install needed!

<script type="module">
  import divyWorkReactLoadingText from 'https://cdn.skypack.dev/@divy-work/react-loading-text';
</script>

README

react-loading-text

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