a React component to show ever-changing content.
/**
* React Tidbits - show ever-changing content
*
* example:
*
* // interval = milliseconds between changes. 1000 milliseconds = 1 second
* const interval = 2000;
*
* // order = "ordered" or "random". Optional, default is "ordered"
* const order = "random";
*
* // tidbits = an array of message, text strings or JSX
* const tidbits = [
* "Text message",
* (<span><b>JSX</b> message</span>),
* ];
*
* <Tidbits
* interval={interval}
* order={order}
* tidbits={tidbits}
* />
*
* License: MIT
* Repository: https://github.com/attogram/react-tidbits
*/- repackage for npm
- publish to npm
react-tidbits is an open source project licensed under the MIT license.
Contributions welcome!
