update NetDetailModal

This commit is contained in:
2025-11-03 19:49:42 +07:00
parent efe9749a8e
commit f3ad6e02f2
16 changed files with 821 additions and 523 deletions

View File

@@ -0,0 +1,20 @@
import React from "react";
import { Text, View } from "react-native";
import styles from "../../style/NetDetailModal.styles";
interface NotesSectionProps {
ghiChu?: string;
}
export const NotesSection: React.FC<NotesSectionProps> = ({ ghiChu }) => {
if (!ghiChu) return null;
return (
<View style={styles.infoCard}>
<View style={styles.infoRow}>
<Text style={styles.infoLabel}>Ghi chú</Text>
<Text style={styles.infoValue}>{ghiChu}</Text>
</View>
</View>
);
};