MCPcopy Create free account
hub / github.com/composify-js/composify / links

Function links

examples/react-router/app/root.tsx:6–17  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

4import './app.css';
5
6export const links: Route.LinksFunction = () => [
7 { rel: 'preconnect', href: 'https://fonts.googleapis.com' },
8 {
9 rel: 'preconnect',
10 href: 'https://fonts.gstatic.com',
11 crossOrigin: 'anonymous',
12 },
13 {
14 rel: 'stylesheet',
15 href: 'https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap',
16 },
17];
18
19export function Layout({ children }: { children: React.ReactNode }) {
20 return (

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected