import { useState } from 'react' const CATEGORIES = [ { id: 'all', name: 'Todos', icon: '📱' }, { id: 'produtividade', name: 'Produtividade', icon: '⚡' }, { id: 'utilidades', name: 'Utilidades', icon: '🔧' }, { id: 'games', name: 'Games', icon: '🎮' }, { id: 'ferramentas', name: 'Ferramentas', icon: '🛠️' }, { id: 'educacao', name: 'Educação', icon: '📚' }, { id: 'entretenimento', name: 'Entretenimento', icon: '🎬' } ] export default function CategoryMenu({ selectedCategory, onSelect }) { return (
{CATEGORIES.map((category) => ( ))}
) }