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

import UserProjectsGrid from './user-projects-grid';

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