mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
a4ebd87a81
Summary: This diff fixes an error affecting of loading of Ads Manager iOS app Changelog: [Internal] Reviewed By: fkgozali Differential Revision: D17958919 fbshipit-source-id: d87f169954d891ee2fcb1143f1985ea3811b949c
23 lines
462 B
JavaScript
23 lines
462 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.
|
|
*
|
|
* @format
|
|
* @flow
|
|
*/
|
|
|
|
'use strict';
|
|
import NativeSoundManager from './NativeSoundManager';
|
|
|
|
const SoundManager = {
|
|
playTouchSound: function(): void {
|
|
if (NativeSoundManager) {
|
|
NativeSoundManager.playTouchSound();
|
|
}
|
|
},
|
|
};
|
|
|
|
module.exports = SoundManager;
|