UNPKG

febs-react-web

Version:

A framework for building web apps with React

18 lines (14 loc) 297 B
/** * Copyright (c) 2015-present, Alibaba Group Holding Limited. * All rights reserved. * * @providesModule ReactPlatform */ 'use strict'; const Platform = { OS: 'web', select:(platform) => { return platform.web || platform.ios; }, }; module.exports = Platform;