import React from 'react'; import { View, Button, StyleSheet } from 'react-native'; interface BottomActionBarProps { onRun: () => void; onSave: () => void; onUndo: () => void; onRestore: () => void; onBack: () => void; isSaveDisabled?: boolean; } const BottomActionBar: React.FC = ({ onRun, onSave, onUndo, onRestore, onBack, isSaveDisabled = true, }) => { return (