Renders all the <meta>
tags created by route module MetaFunction exports. You should render it inside the <head>
of your HTML.
import { Meta } from "react-router";
export default function Root() {
return (
<html>
<head>
<Meta />
</head>
</html>
);
}
None