mirror of
https://github.com/zhigang1992/react-native.git
synced 2026-02-05 22:47:48 +08:00
12 lines
111 B
JavaScript
12 lines
111 B
JavaScript
/**
|
|
* @providesModule Platform
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
var Platform = {
|
|
OS: 'ios',
|
|
};
|
|
|
|
module.exports = Platform;
|