Skip to main content
zerotal

Documentation


Documentation / @zerotal/flow / index / Head

Function: Head()

Head(props): HtmlNode

Defined in: flow/src/components.ts:81

Marks its children as document <head> content — they are hoisted into the page head (and reconciled across SPA navigations) rather than rendered inline.

Parameters

props

children?

unknown

Returns

HtmlNode

Example

<Head>
  <title>Dashboard</title>
  <meta name="description" content="Your account overview" />
</Head>