Files
swiss-datashare/src/components/Meta.tsx

12 lines
189 B
TypeScript
Raw Normal View History

2022-04-28 15:31:37 +02:00
import Head from "next/head";
const Meta = ({ title }: { title: string }) => {
return (
<Head>
<title>{title} - Pingvin Share</title>
</Head>
);
};
export default Meta;