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

import PagesDashboardDashboardComponentsUserDashboard from './user-dashboard';

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