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

import Complaints from './complaints';

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