UNPKG

@ajaysidhu/react-native-template

Version:

It is a minimalist React Native template with preconfigured common set of packages to start a new app.

13 lines (10 loc) 436 B
// NOTE(EvanBacon): `react-native-web` adds a extra `div`s around the root HTML, these // make static rendering much harder as we expect the root element to be `<html>`. // This resolution will alias to a simple in-out component to avoid the extra HTML. function AppContainer({ children }) { return children; } if (process.env.NODE_ENV !== 'production') { AppContainer.displayName = 'AppContainer'; } export default AppContainer;