# Remix Guide ## As a script tag Add the script tag to your `` component in `app/root`. Refer to the [CDN Guide](https://github.com/aidenybai/react-scan/blob/main/docs/installation/cdn.md) for the available URLs. ```jsx // app/root.jsx import { Links, Meta, Scripts, ScrollRestoration, } from "@remix-run/react"; export function Layout({ children }: { children: React.ReactNode }) { return ( {/* Must run before any of your scripts */}