mirror of
https://github.com/stonith404/pingvin-share.git
synced 2024-11-18 21:30:12 +01:00
12 lines
189 B
TypeScript
12 lines
189 B
TypeScript
|
import Head from "next/head";
|
||
|
|
||
|
const Meta = ({ title }: { title: string }) => {
|
||
|
return (
|
||
|
<Head>
|
||
|
<title>{title} - Pingvin Share</title>
|
||
|
</Head>
|
||
|
);
|
||
|
};
|
||
|
|
||
|
export default Meta;
|