Skip to content

Commit

Permalink
refactor: update footer component to use language select
Browse files Browse the repository at this point in the history
  • Loading branch information
jonyw4 committed Nov 24, 2021
1 parent fda0a41 commit 3d9cd62
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions webapp/src/components/organisms/Footer/Footer.component.tsx
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
export function Footer(){
import { LanguageSelect } from "../../atoms/LanguageSelect/LanguageSelect.component";
export function Footer() {
return (
<footer>
<LanguageSelect />
<small>
<a href="https://creativecommons.org/licenses/by-nc-sa/4.0/">
CC BY-NC-SA 4.0 2021
</a>
{" "}
</a>{" "}
© Jonathan Celio
</small>
</footer>
);
}
}

0 comments on commit 3d9cd62

Please sign in to comment.