import React from 'react'; import { AppScreen } from '../types'; interface BottomNavProps { currentScreen: AppScreen; setScreen: (screen: AppScreen) => void; } export const BottomNav: React.FC = ({ currentScreen, setScreen }) => { const navItems = [ { id: AppScreen.LIBRARY, label: 'Полка', icon: 'library_books' }, { id: AppScreen.CATEGORIES, label: 'Категории', icon: 'category' }, { id: AppScreen.WISHLIST, label: 'Вишлист', icon: 'bookmark' }, { id: AppScreen.SETTINGS, label: 'Настройки', icon: 'settings' }, ]; return ( ); };