NewPost View at bottom bar navigator

This commit is contained in:
Adolfo Reyna
2022-12-22 11:36:24 -05:00
parent fc8056bd92
commit c2ed9af093
2 changed files with 60 additions and 3 deletions

15
Views/NewPost.js Normal file
View File

@@ -0,0 +1,15 @@
import { View } from "react-native";
import NewPost from "../components/NewPost";
let NewPostView = ()=>{
return (
<View>
<NewPost >
</NewPost>
</View>
)
}
export default NewPostView;