Skip to content

Commit

Permalink
name
Browse files Browse the repository at this point in the history
  • Loading branch information
slorber committed Mar 11, 2022
1 parent 85eeeff commit 1d78ee4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ function Column({column}: {column: ColumnType}) {
);
}

export default function FooterMultiColumn({columns}: Props): JSX.Element {
export default function FooterLinksMultiColumn({columns}: Props): JSX.Element {
return (
<div className="row footer__links">
{columns.map((column, i) => (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ function SimpleLinkItem({item}: {item: Props['links'][number]}) {
);
}

export default function FooterSimple({links}: Props): JSX.Element {
export default function FooterLinksSimple({links}: Props): JSX.Element {
return (
<div className="footer__links text--center">
<div className="footer__links">
Expand Down

0 comments on commit 1d78ee4

Please sign in to comment.