@onehat/ui
Version:
Base UI for OneHat apps
14 lines • 330 B
JavaScript
export default function parseNotification(notification) {
if (notification.notification) {
notification = notification.notification;
}
const
body = notification?.request?.content?.body,
title = notification?.request?.content?.title,
data = notification?.request?.content?.data;
return {
body,
title,
data,
};
};