diff options
Diffstat (limited to 'src/view/screens/PostRepostedBy.tsx')
-rw-r--r-- | src/view/screens/PostRepostedBy.tsx | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/src/view/screens/PostRepostedBy.tsx b/src/view/screens/PostRepostedBy.tsx index 875cc978c..d9a59a268 100644 --- a/src/view/screens/PostRepostedBy.tsx +++ b/src/view/screens/PostRepostedBy.tsx @@ -1,8 +1,10 @@ import React, {useEffect} from 'react' -import {makeRecordUri} from '../lib/strings' +import {View} from 'react-native' +import {ViewHeader} from '../com/util/ViewHeader' import {PostRepostedBy as PostRepostedByComponent} from '../com/post-thread/PostRepostedBy' import {ScreenParams} from '../routes' import {useStores} from '../../state' +import {makeRecordUri} from '../lib/strings' export const PostRepostedBy = ({visible, params}: ScreenParams) => { const store = useStores() @@ -15,5 +17,10 @@ export const PostRepostedBy = ({visible, params}: ScreenParams) => { } }, [store, visible]) - return <PostRepostedByComponent uri={uri} /> + return ( + <View> + <ViewHeader title="Reposted by" /> + <PostRepostedByComponent uri={uri} /> + </View> + ) } |