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

import EndCustomerGrid from './end-customer-grid';

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