mirror of
https://github.com/hansputera/tiktok-dl.git
synced 2026-04-06 04:01:57 +02:00
16 lines
379 B
TypeScript
16 lines
379 B
TypeScript
import React from 'react';
|
|
|
|
export const Footer = () => (
|
|
<React.Fragment>
|
|
<p className="text-lg">
|
|
© {new Date().getFullYear()}{' '}
|
|
<a
|
|
target="_blank"
|
|
href="https://github.com/hansputera/tiktok-dl.git"
|
|
>
|
|
TikTok-DL Project
|
|
</a>
|
|
</p>
|
|
</React.Fragment>
|
|
);
|