mirror of
https://github.com/status-im/react-native.git
synced 2025-01-10 01:25:39 +00:00
12 lines
111 B
JavaScript
12 lines
111 B
JavaScript
/**
|
|
* @providesModule Platform
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
var Platform = {
|
|
OS: 'ios',
|
|
};
|
|
|
|
module.exports = Platform;
|