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

import MonthwiseReportGrid from './monthwise-report-grid';

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