import React from 'react'; import { View, StyleSheet } from 'react-native'; import { router } from 'expo-router'; import Button from '../atoms/Button'; interface FunctionsSectionProps { onFeedbackPress: () => void; isWideScreen?: boolean; } export default function FunctionsSection({ onFeedbackPress, isWideScreen = false }: FunctionsSectionProps) { const buttonStyle = { marginBottom: isWideScreen ? 12 : 8, }; return (