serviceIncident.js 206 B

123456789
  1. export function ServiceIncident(params = {}) {
  2. return {
  3. id: '1',
  4. title: 'Test Incident',
  5. updates: ['First Update', 'Second Update'],
  6. url: 'https://status.sentry.io',
  7. ...params,
  8. };
  9. }