WebJamApps/CollegeLutheran

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

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
import { GivingContent } from './GivingContent';
import commonUtils from '../../lib/commonUtils';

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