Write Jest tests using React Naive Testing Library for the following component:
import React, { useState } from 'react';
import { Text, View, TouchableOpacity } from 'react-native';
export default function App() {
const [cnt, setCnt] = useState(0);
return (
<View>
<TouchableOpacity
="Press Me!"
accessibilityLabel={() => {
onPresssetCnt(cnt + 1);
>
}}<Text>Press Me!</Text>
</TouchableOpacity>
<Text
="Press Count">
accessibilityLabel`${cnt}`}
{</Text>
</View>
;
) }