import {View} from "react-native"; import {RadioButton} from "react-native-paper"; import DText from "../../DText/DText"; import {FC} from "react"; type Props = { value: string; label: string; } const SortingButton: FC = ({value, label}) => { return ( {label} ) } export default SortingButton;