mirror of
https://github.com/roleypoly/roleypoly.git
synced 2025-04-25 11:59:11 +00:00
7 lines
142 B
TypeScript
7 lines
142 B
TypeScript
import Head from 'react-helmet';
|
|
|
|
export const Title = (props: { title: string }) => (
|
|
<Head>
|
|
<title>{props.title}</title>
|
|
</Head>
|
|
);
|