Files
sgw-owner-app/components/manager/devices.tsx
2025-12-10 19:49:54 +07:00

17 lines
425 B
TypeScript

import { ThemedText } from "@/components/themed-text";
import { ThemedView } from "@/components/themed-view";
import { StyleSheet } from "react-native";
export default function DevicesScreen() {
console.log("Gọi API 2");
return (
<ThemedView style={styles.container}>
<ThemedText>Quản thiết bị</ThemedText>
</ThemedView>
);
}
const styles = StyleSheet.create({
container: { flex: 1 },
});