BottomTabNavigation
This commit is contained in:
19
components/NewPost.js
Normal file
19
components/NewPost.js
Normal 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 ({
|
||||
});
|
||||
Reference in New Issue
Block a user