17 lines
446 B
TypeScript
17 lines
446 B
TypeScript
import { View, Text } from "react-native";
|
|
|
|
import { User } from "@/store/models/User.model";
|
|
|
|
interface PersonalLoginListProps {
|
|
user: User;
|
|
}
|
|
|
|
export const PersonalLoginList = ({ user }: PersonalLoginListProps) => {
|
|
return (
|
|
<View className="bg-lightGray rounded-md">
|
|
<Text className="font-medium my-4 text-gray-600">Log-in List:</Text>
|
|
<Text className="font-medium text-black">No logins assigned</Text>
|
|
</View>
|
|
);
|
|
};
|