Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 244 Bytes

ServerOnly.md

File metadata and controls

15 lines (11 loc) · 244 Bytes

<ServerOnly>

Component that renders its children only if used on a Node.js server.

Usage

import {ServerOnly} from 'libreact/lib/ServerOnly';

<ServerOnly>
  <div>
    You can see this only on server.
  </div>
</ServerOnly>