BottomTabNavigation

This commit is contained in:
aeroreyna
2022-03-06 22:09:01 -08:00
parent 8b1a52a3af
commit b01d437a73
6 changed files with 56 additions and 16 deletions

19
components/NewPost.js Normal file
View File

@@ -0,0 +1,19 @@
import React, { useState } from 'react';
import { Text, View, TextInput, Button, StyleSheet } from 'react-native';
import API from './../API.js';
let NewPost = ()=>{
let [query, setQuery] = useState('');
return (
<View style={styles.mainView}>
</View>
);
}
export default NewPost;
const styles = StyleSheet.create ({
});