import Link from '../../components/Link'; import Store from '../../store'; import * as selectors from '../../store/selectors'; import VirtualScroll from '../ui/VirtualScroll'; import { IonPage, IonHeader, IonToolbar, IonTitle, IonContent } from '@ionic/react'; const ListEntry = ({ list, ...props }) => ( {list.name} ); const AllLists = ({ onSelect }) => { const lists = Store.useState(selectors.getLists); return ( } /> ); }; const Lists = ({ selected, ...props }) => { return ( Lists ); }; export default Lists;