diff options
-rw-r--r-- | src/components/moments/MomentPostContent.tsx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/components/moments/MomentPostContent.tsx b/src/components/moments/MomentPostContent.tsx index df7f4e68..9413709d 100644 --- a/src/components/moments/MomentPostContent.tsx +++ b/src/components/moments/MomentPostContent.tsx @@ -40,6 +40,8 @@ const MomentPostContent: React.FC<MomentPostContentProps> = ({ const navigation = useNavigation(); const dispatch = useDispatch(); const imageRef = useRef(null); + const [fadeValue, setFadeValue] = useState(new Animated.Value(0)); + const [visible, setVisible] = useState(false); useEffect(() => { const loadTags = async () => { |