mirror of
https://github.com/swissmakers/swiss-datashare.git
synced 2026-04-21 06:03:13 +02: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;
|