mirror of
https://github.com/preactjs/wmr.git
synced 2026-01-25 15:08:00 +00:00
8 lines
207 B
JavaScript
8 lines
207 B
JavaScript
import { useTitle, useMeta } from 'hoofd/preact';
|
|
|
|
export default function Meta({ title, description }) {
|
|
useTitle('WMR: ' + title);
|
|
useMeta({ name: 'description', content: description });
|
|
return null;
|
|
}
|