Title
Edit this pageTitle
is a component that renders the title
element.
This will render the title of the page in the browser tab.
import { Title } from "@solidjs/meta";<Title>My Site</Title>;
Usage
Setting the title for your site
import { MetaProvider, Title } from "@solidjs/meta";export default function Root() { return ( <MetaProvider> <Title>Default Application Title</Title> </MetaProvider> );}