mirror of
https://github.com/zhigang1992/react-native.git
synced 2026-06-11 01:18:41 +08:00
Reviewed By: bestander Differential Revision: D14159631 fbshipit-source-id: 62830f67060e575841cbc864dde30c7bee7e7c4c
16 lines
397 B
JavaScript
16 lines
397 B
JavaScript
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @flow
|
|
* @format
|
|
*/
|
|
'use strict';
|
|
|
|
const createPerformanceLogger = require('createPerformanceLogger');
|
|
|
|
const GlobalPerformanceLogger = createPerformanceLogger();
|
|
module.exports = GlobalPerformanceLogger;
|