import type { LinksFunction } from "@remix-run/node"; import styles from "./spinner.css"; export const links: LinksFunction = () => [ { rel: "stylesheet", href: styles }, ]; export default function Spinner() { return (
); }