Rocket.Chat.ReactNative/app/call.tsx

14 lines
213 B
TypeScript

import { View, Text } from 'react-native';
import React from 'react';
const call = () => {
console.log('call');
return (
<View style={{ flex: 1 }}>
<Text>call</Text>
</View>
);
};
export default call;