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

import ApplyForLeavesGrid from './apply-for-leaves-grid';

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