WebJamApps/CollegeLutheran

View on GitHub
src/containers/Staff/index.tsx

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
import DefaultStaffContent from './StaffContent';
import commonUtils from '../../lib/commonUtils';

export const Staff = (): JSX.Element => {
  commonUtils.setTitleAndScroll('Church Staff', window.screen.width);
  return (<DefaultStaffContent />);
};