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

import IndentGridForPreparedMaterial from './indent-grid-for-prepared-material';

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