import React from "react"; import { FlexWidget, TextWidget } from "react-native-android-widget"; export function HelloWidget({ time, delayString }) { return ( {delayString ? ( delayString.map((d) => { let data = d.split(" "); return ( ); }) ) : ( )} ); }