Add liquid search & jobs list.
This commit is contained in:
@@ -1,24 +1,4 @@
|
||||
import { Link } from "expo-router";
|
||||
import { StyleSheet, Text, View } from "react-native";
|
||||
|
||||
import JobsList from "../../components/jobs-list/jobs-list";
|
||||
export default function Tab() {
|
||||
return (
|
||||
<View style={styles.container}>
|
||||
<Text>Jobs Screen.</Text>
|
||||
<Link
|
||||
href={{ pathname: "/jobs/[jobId]", params: { jobId: 123 } }}
|
||||
withAnchor
|
||||
>
|
||||
Go to detail
|
||||
</Link>
|
||||
</View>
|
||||
);
|
||||
return <JobsList />;
|
||||
}
|
||||
|
||||
const styles = StyleSheet.create({
|
||||
container: {
|
||||
flex: 1,
|
||||
justifyContent: "center",
|
||||
alignItems: "center",
|
||||
},
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user