[Home](./index.md) > [@jsamr/react-native-li](./react-native-li.md) > [MarkedList](./react-native-li.markedlist.md) ## MarkedList() function A component which given a counter style, wraps each of its children with a [MarkedListItem()](./react-native-li.markedlistitem.md). The latter prepends the child with a marker box containing a marker string representation for this child index. See [CSS Lists and Counters Module Level 3, Markers](https://www.w3.org/TR/css-lists-3/#markers). Signature: ```typescript export default function MarkedList({ children, Container, ...props }: PropsWithChildren): React.ReactElement>; ``` ## Parameters | Parameter | Type | Description | | --- | --- | --- | | { children, Container, ...props } | PropsWithChildren<[MarkedListProps](./react-native-li.markedlistprops.md)> | | Returns: React.ReactElement<any, string \| React.JSXElementConstructor<any>>