React Native. Turn off warnings

Sometimes it's annoying to get those warnings while you work on the layout stuff.

Based on

RN documentation

you can turn them off by setting:

console.disableYellowBox = true;

You can put it inside your App.js file. I don't suggest you to commit this but as temporary string is definitely acceptable.