/**
* Features List component for mobile
*/
import React from 'react';
import { View, Text } from 'react-native';
import { FeatureCard } from './FeatureCard';
import type { FeaturesListProps } from '../types';
export function FeaturesList({ items, translations }: FeaturesListProps) {
if (items.length === 0) {
return (
{translations.features.noItems}
);
}
return (
{items.map((item) => (
))}
);
}