From ab134cac93f488005febdc3b6e86fdbd85589fd0 Mon Sep 17 00:00:00 2001 From: Paul Frazee Date: Tue, 1 Nov 2022 11:06:43 -0500 Subject: Add consistent view headers --- src/view/screens/PostThread.tsx | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'src/view/screens/PostThread.tsx') diff --git a/src/view/screens/PostThread.tsx b/src/view/screens/PostThread.tsx index 1f2deb312..a30b5521b 100644 --- a/src/view/screens/PostThread.tsx +++ b/src/view/screens/PostThread.tsx @@ -1,5 +1,7 @@ import React, {useEffect} from 'react' +import {View} from 'react-native' import {makeRecordUri} from '../lib/strings' +import {ViewHeader} from '../com/util/ViewHeader' import {PostThread as PostThreadComponent} from '../com/post-thread/PostThread' import {ScreenParams} from '../routes' import {useStores} from '../../state' @@ -15,5 +17,10 @@ export const PostThread = ({visible, params}: ScreenParams) => { } }, [visible, store.nav, name]) - return + return ( + + + + + ) } -- cgit 1.4.1