diff options
author | George Rusu <george@tagg.id> | 2021-05-25 13:35:43 -0700 |
---|---|---|
committer | George Rusu <george@tagg.id> | 2021-05-25 13:35:43 -0700 |
commit | fd223276632af429e2dead7abc9149d812c6e4b9 (patch) | |
tree | f221794fafd91deae6a5c4d6a61003e461e30ea4 /src | |
parent | 4089ccdc05ffa5e02c6e0be717626cbdc631b8f2 (diff) |
Catch up
Diffstat (limited to 'src')
-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 () => { |