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

import ProductConvertionGrid from './product-convertion-grid';

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