Files
tiktok-dl/apps/web/components/Footer.tsx
Hanif Dwy Putra S e2302be434 fix(web): fix ghost video component
Signed-off-by: Hanif Dwy Putra S <hanifdwyputrasembiring@gmail.com>
2022-08-12 13:30:28 +00:00

16 lines
379 B
TypeScript

import React from 'react';
export const Footer = () => (
<React.Fragment>
<p className="text-lg">
&copy; {new Date().getFullYear()}{' '}
<a
target="_blank"
href="https://github.com/hansputera/tiktok-dl.git"
>
TikTok-DL Project
</a>
</p>
</React.Fragment>
);