react-offscreen

1.0.3 • Public • Published

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

/react-offscreen/

    Package Sidebar

    Install

    npm i react-offscreen

    Weekly Downloads

    2

    Version

    1.0.3

    License

    MIT

    Unpacked Size

    41 kB

    Total Files

    11

    Last publish

    Collaborators

    • schne324