List
ListView is a widget that provides a list view that you can use in your application.
Example
import { List } from '@vixen-js/core-react';
export function ListViewExample() { return ( <List> <ListItem title="First Item" /> <ListItem title="Second Item" /> </List> );}
Learn more about ListView