Files
react/packages/react-dom/src/events/SyntheticUIEvent.js
T
2017-12-12 16:45:40 +00:00

16 lines
354 B
JavaScript

/**
* Copyright (c) 2013-present, Facebook, Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
import SyntheticEvent from 'events/SyntheticEvent';
const SyntheticUIEvent = SyntheticEvent.extend({
view: null,
detail: null,
});
export default SyntheticUIEvent;