expo / ex-navigation

Route-centric navigation for React Native
997 stars 201 forks source link

Warning: Stateless function components cannot be given refs. #472

Open funkjunky opened 7 years ago

funkjunky commented 7 years ago

I took the expo starter app and added my own stateless component to the router and pushed it.

When I do, I get the warning "Warning: Stateless function components cannot be given refs. Attempts to access this ref will fail"

My stateless component is nothing more than:

const Demo = () => <Text>Hello!</Text>;
export default Demo;