[Share Extension] Move away from deprecated API, implement JS side of things (#5509)

This commit is contained in:
Hailey
2024-09-26 12:37:51 -07:00
committed by GitHub
parent 175df72972
commit 7ee67e4e7e
7 changed files with 59 additions and 29 deletions
+1
View File
@@ -34,6 +34,7 @@ export function Composer({}: {winHeight: number}) {
mention={state?.mention}
text={state?.text}
imageUris={state?.imageUris}
videoUri={state?.videoUri}
/>
</Providers>
</View>
+1
View File
@@ -54,6 +54,7 @@ export function Composer({winHeight}: {winHeight: number}) {
mention={state.mention}
text={state.text}
imageUris={state.imageUris}
videoUri={state.videoUri}
/>
</Animated.View>
)