import React from 'react'; import {View, Text} from 'react-native'; interface FBButtonProp { label: string; } const FBButton: React.FC = props => { const {label} = props; return ( {label} ); }; export default FBButton;