15 lines
186 B
TypeScript
15 lines
186 B
TypeScript
'use client'
|
|
|
|
import { useI18n } from '@/lib/i18n'
|
|
|
|
export default function Footer() {
|
|
const { t } = useI18n()
|
|
|
|
return (
|
|
<footer>
|
|
{t('footer.text')}
|
|
</footer>
|
|
)
|
|
}
|
|
|