import React from 'react';
import { StyleSheet, Text, View } from 'react-native';
const Employee = (props: any) => {
return (
Név: { props.name }
);
}
export default function App() {
return (
Dolgozók
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#fff',
alignItems: 'center',
justifyContent: 'center',
},
});