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

import BomCalcGrid from './bom-calc-grid';

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