const arr = useArray([1, 2, 3])
const pushFive = () => arr.push(5)
const pop = () => arr.pop()
style={{ margin: '.5em' }}
<Button onClick={pop} size="large" type="primary">
style={{ margin: '.5em' }}
renderItem={item => <List.Item>{item}</List.Item>}