react-offscreen
A react component for offscreen text
Installation
npm i --save react-offscreen
Usage
; 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