{"version":3,"sources":["UnimplementedView.js"],"names":["React","View","StyleSheet","UnimplementedView","props","styles","unimplementedView","style","children","create","__DEV__","alignSelf","borderColor","borderWidth"],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAEA;;AAEA,OAAO,KAAKA,KAAZ,MAAuB,OAAvB;AACA,SAAQC,IAAR,EAAcC,UAAd,QAA+B,cAA/B;;AAEA;AACA;AACA;AACA;AACA,MAAMC,iBAAiB,GAAIC,KAAD,IAAwC;AAChE,sBACE,oBAAC,IAAD;AAAM,IAAA,KAAK,EAAE,CAACC,MAAM,CAACC,iBAAR,EAA2BF,KAAK,CAACG,KAAjC;AAAb,KACGH,KAAK,CAACI,QADT,CADF;AAKD,CAND;;AAQA,MAAMH,MAAM,GAAGH,UAAU,CAACO,MAAX,CAAkB;AAC/BH,EAAAA,iBAAiB,EAAEI,OAAO,GACtB;AACEC,IAAAA,SAAS,EAAE,YADb;AAEEC,IAAAA,WAAW,EAAE,KAFf;AAGEC,IAAAA,WAAW,EAAE;AAHf,GADsB,GAMtB;AAP2B,CAAlB,CAAf;AAUA,eAAeV,iBAAf","sourcesContent":["/**\n * Copyright (c) Facebook, Inc. and its affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * @flow\n * @format\n */\n\n'use strict';\n\nimport * as React from 'react';\nimport {View, StyleSheet} from 'react-native';\ndeclare var __DEV__: boolean;\n/**\n * Common implementation for a simple stubbed view. Simply applies the view's styles to the inner\n * View component and renders its children.\n */\nconst UnimplementedView = (props: $FlowFixMeProps): React.Node => {\n return (\n \n {props.children}\n \n );\n};\n\nconst styles = StyleSheet.create({\n unimplementedView: __DEV__\n ? {\n alignSelf: 'flex-start',\n borderColor: 'red',\n borderWidth: 1,\n }\n : {},\n});\n\nexport default UnimplementedView;\n"]}