--- title: Meta --- # Meta [MODES: framework] ## Summary [Reference Documentation ↗](https://api.reactrouter.com/v7/functions/react_router.Meta.html) Renders all the [``](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/meta) tags created by the route module's [`meta`](../../start/framework/route-module#meta) export. You should render it inside the [``](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/head) of your document. ```tsx import { Meta } from "react-router"; export default function Root() { return ( ); } ``` ## Signature ```tsx function Meta(): React.JSX.Element ```