react-offscreen
v1.0.3
Published
React component for offscreen text
Downloads
9
Readme
react-offscreen
A react component for offscreen text
Installation
npm i --save react-offscreen
Usage
import Offscreen from 'react-offscreen';
const app = (
<Offscreen>I am offscreen text!</Offscreen>
);
Props
tag
{String} (optional): desired tag for offscreen element (defaults to'span'
)children
{Array|Object|String} (required): any valid react children
tag
prop examples
const offscreenParagraph = (<Offscreen tag='p'>Hello World!</Offscreen>);
const offscreenList = (
<Offscreen tag='ul'>
<li>foo</li>
<li>bar</li>
<li>baz</li>
</Offscreen>
)
See demo/
directory for more examples