PageFooter.tsx 373 B

1234567891011121314151617
  1. import React from 'react';
  2. import { IconButton } from '../../components/button/IconButton';
  3. import styles from './pageFooter.css';
  4. function PageFooter () {
  5. return (
  6. <footer id="pageFooter" className={styles.pageFooter}>
  7. <section className={styles.buttons}>
  8. <IconButton icon="settings" />
  9. </section>
  10. </footer>
  11. );
  12. }
  13. export {
  14. PageFooter
  15. };