Closed patrickchoi closed 7 years ago
Hi @patrickchoi!
<SideMenu>
and <View>
should have a common parent. Wrap your render content into <View>
, so it'll look like this:
render() {
return (
<View>
<SideMenu />
<View>...</View>
</View>
);
}
Thanks! That seemed to got past it. But now I'm getting this:
Unfortunately, I don't know anything about LearningFlexbox
component. Please, check appropriate repository (or your code if it isn't a third-party dependency).
On a side note: I'm trying to keep issues in this repo related to the project itself. If you have generic React/RN questions, you may ask them on StackOverflow or ping me on Twitter (@kureevalexey). If I have time, I will try to help you :)
Best of luck!
Apologies, I'm new to React Native so this maybe a really stupid problem. I'm getting "Adjacent JSX elements must be wrapped in an enclosing tag" errors
Here's my code: