import { StatusBar } from "react-native"; export default { state: { background: "#FFC21C", }, actions: ({ model, setState }) => ({ changeBackground(background) { StatusBar.setBackgroundColor(background); }, }), };