MM-58137 Fix crash by importing the correct Animated component (#7937)

This commit is contained in:
Elias Nahum 2024-05-07 17:56:08 +08:00 committed by GitHub
parent 2eb8adb3f6
commit 1fd32bbab5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -2,7 +2,8 @@
// See LICENSE.txt for license information.
import React, {useCallback, useEffect, useRef, useState} from 'react';
import {Animated, StyleSheet, TouchableWithoutFeedback, View} from 'react-native';
import {StyleSheet, TouchableWithoutFeedback, View} from 'react-native';
import Animated from 'react-native-reanimated';
import {getRedirectLocation} from '@actions/remote/general';
import FileIcon from '@components/files/file_icon';