Skip to content

Commit

Permalink
Footer: rewrite in TS
Browse files Browse the repository at this point in the history
  • Loading branch information
stscoundrel committed Feb 24, 2024
1 parent 91c1d34 commit 16852ae
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
import ExternalLink from 'components/ExternalLink'
import LetterLink from 'components/LetterLink'
import ContentArea from 'components/ContentArea'
import { AlphabetLetter } from 'lib/services/dictionary'
import styles from './Footer.module.scss'

export default function Footer({ letters }) {
interface FooterProps{
letters: AlphabetLetter[]
}

export default function Footer({ letters }: FooterProps) {
return (
<footer className={styles.section}>
<div className="container">
Expand Down

0 comments on commit 16852ae

Please sign in to comment.