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

import PagesMasterMasterComponentsReasonsGrid from './pages-master-master-components-reasons-grid';

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