You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

7 lines
235 B

export const event_url = (event_id) =>
`https://www.facebook.com/events/${event_id}`;
const page_url = (page_id) => `https://www.facebook.com/${page_id}`;
export const page_events_url = (page_id) => page_url(page_id) + '/events/';