UNPKG

react-native-web-ui-components

Version:

[![Dependencies](https://img.shields.io/badge/dependencies-renovate-brightgreen.svg)](https://github.com/CareLuLu/react-native-web-ui-components/issues/12) [![Codacy Badge](https://img.shields.io/codacy/grade/c0ef990240a84ab7abee7af64602dd6d/master)](http

11 lines (8 loc) 174 B
import { Platform } from 'react-native'; const WebOnly = props => { if (Platform.OS === 'web') { return props.children; } return null; }; export default WebOnly;