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

import ProjectsReportGrid from './projects-report-grid';

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