UNPKG

@boneframework/native-components

Version:
12 lines (8 loc) 290 B
import client from './client'; const register = pushToken => client.post('/api/notifications/register-token', {token: pushToken}); const send = (message, data) => { return client.post('/api/notifications/send-notification', {message, data}) }; export default { register, send };