Skip to content

Instantly share code, notes, and snippets.

@noomorph
Created January 9, 2019 14:03
Show Gist options
  • Save noomorph/00ab49ceb392efc366c4424df930692c to your computer and use it in GitHub Desktop.
Save noomorph/00ab49ceb392efc366c4424df930692c to your computer and use it in GitHub Desktop.
import LoginScreenWithSideEffect from './LoginScreen';
module.exports = {
get LoginScreen() {
return LoginScreenWithSideEffect;
},
};
module.exports = {
DEFAULT_COLOR: 'blue',
};
import Constants from './constants';
import Components from './components';
console.log(Constants.DEFAULT_COLOR);
render(new Components.Screen());
import Constants from './Constants';
Constants.DEFAULT_COLOR = 'red';
export default function Screen() {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment