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

import ExitActionGrid from './exit-action-grid';

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