ahbeng/NUSMods

View on GitHub
website/src/views/layout/NoFooter.tsx

Summary

Maintainability
A
0 mins
Test Coverage
import type { FC } from 'react';
import styles from './NoFooter.scss';

/**
 * Stupid hack to hide footer using a position fixed element that hides the
 * footer.
 */
const NoFooter: FC = () => <div className={styles.noFooter} />;

export default NoFooter;