Реагировать на родную проблему после извлечения Expo - PullRequest
1 голос
/ 07 мая 2020

Я проверил много topi c в stackoverflow, но не смог найти, надеюсь, что нет дублированных topi c.

Я выбросил свой expo-проект, чтобы реагировать на нативную реакцию, но я получаю ошибку;

enter image description here

вы можете мне помочь?

мое приложение. js

Я получаю ошибку на 35: 41




const Stack = createStackNavigator();

export default function App(props) {
  const [isLoadingComplete, setLoadingComplete] = React.useState(false);
  const [initialNavigationState, setInitialNavigationState] = React.useState();




  const containerRef = React.useRef();

  const { getInitialState } = useLinking(containerRef); // here 
  const config = {
    animation: 'spring',
    config: {
      stiffness: 1000,
      damping: 500,
      mass: 3,
      overshootClamping: true,
      restDisplacementThreshold: 0.01,
      restSpeedThreshold: 0.01,
    },
  };


...