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

import PagesHrmsHrmsComponentsShifts from './pages-hrms-hrms-components-shifts';

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