mirror of
https://github.com/zebrajr/react.git
synced 2025-12-06 12:20:20 +01:00
* Move files and tests to more meaningful places * Fix the build Now that we import reconciler via react-reconciler, I needed to make a few tweaks. * Update sizes * Move @preventMunge directive to FB header * Revert unintentional change * Fix Flow coverage I forgot to @flow-ify those files. This uncovered some issues. * Prettier, I love you but you're bringing me down Prettier, I love you but you're bringing me down Like a rat in a cage Pulling minimum wage Prettier, I love you but you're bringing me down Prettier, you're safer and you're wasting my time Our records all show you were filthy but fine But they shuttered your stores When you opened the doors To the cops who were bored once they'd run out of crime Prettier, you're perfect, oh, please don't change a thing Your mild billionaire mayor's now convinced he's a king So the boring collect I mean all disrespect In the neighborhood bars I'd once dreamt I would drink Prettier, I love you but you're freaking me out There's a ton of the twist but we're fresh out of shout Like a death in the hall That you hear through your wall Prettier, I love you but you're freaking me out Prettier, I love you but you're bringing me down Prettier, I love you but you're bringing me down Like a death of the heart Jesus, where do I start? But you're still the one pool where I'd happily drown And oh! Take me off your mailing list For kids who think it still exists Yes, for those who think it still exists Maybe I'm wrong and maybe you're right Maybe I'm wrong and maybe you're right Maybe you're right, maybe I'm wrong And just maybe you're right And oh! Maybe mother told you true And there'll always be somebody there for you And you'll never be alone But maybe she's wrong and maybe I'm right And just maybe she's wrong Maybe she's wrong and maybe I'm right And if so, here's this song!
27 lines
967 B
JavaScript
27 lines
967 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.
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
var ReactDOM = require('./src/client/ReactDOM');
|
|
|
|
Object.assign(ReactDOM.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED, {
|
|
// These are real internal dependencies that are trickier to remove:
|
|
ReactBrowserEventEmitter: require('ReactBrowserEventEmitter'),
|
|
ReactErrorUtils: require('ReactErrorUtils'),
|
|
ReactFiberErrorLogger: require('ReactFiberErrorLogger'),
|
|
ReactFiberTreeReflection: require('ReactFiberTreeReflection'),
|
|
ReactDOMComponentTree: require('ReactDOMComponentTree'),
|
|
ReactInstanceMap: require('ReactInstanceMap'),
|
|
// These are dependencies of TapEventPlugin:
|
|
EventPluginUtils: require('EventPluginUtils'),
|
|
EventPropagators: require('EventPropagators'),
|
|
SyntheticUIEvent: require('SyntheticUIEvent'),
|
|
});
|
|
|
|
module.exports = ReactDOM;
|