thêm giao diện quản lý thuyền
This commit is contained in:
17
components/manager/fleets.tsx
Normal file
17
components/manager/fleets.tsx
Normal file
@@ -0,0 +1,17 @@
|
||||
import { ThemedText } from "@/components/themed-text";
|
||||
import { ThemedView } from "@/components/themed-view";
|
||||
import { StyleSheet } from "react-native";
|
||||
|
||||
export default function FleetsScreen() {
|
||||
console.log("Gọi API 3");
|
||||
|
||||
return (
|
||||
<ThemedView style={styles.container}>
|
||||
<ThemedText>Quản lý đội tàu</ThemedText>
|
||||
</ThemedView>
|
||||
);
|
||||
}
|
||||
|
||||
const styles = StyleSheet.create({
|
||||
container: { flex: 1 },
|
||||
});
|
||||
Reference in New Issue
Block a user