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

import NotifyPartyGrid from './notify-party-grid';

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