import React from 'react';
import { render } from '@testing-library/react';

import NotificationsReportGrid from './notifications-report-grid';

describe('NotificationsReportGrid', () => {
  it('should render successfully', () => {
    const { baseElement } = render(
      <NotificationsReportGrid />
    );
    expect(baseElement).toBeTruthy();
  });
});
