diff --git a/app/routes/events-team.tsx b/app/routes/events-team.tsx index 4b98631..3ec3248 100644 --- a/app/routes/events-team.tsx +++ b/app/routes/events-team.tsx @@ -27,11 +27,15 @@ import { } from "@chakra-ui/react"; import { useLoaderData } from "@remix-run/react"; import { useState } from "react"; +import calendarStyles from "react-big-calendar/lib/css/react-big-calendar.css"; import stylesheet from "../styles/events-team.css"; import { type LinksFunction } from "@remix-run/cloudflare"; export const links: LinksFunction = () => { - return [{ href: stylesheet, rel: "stylesheet" }]; + return [ + { href: stylesheet, rel: "stylesheet" }, + { href: calendarStyles, rel: "stylesheet" }, + ]; }; export async function loader({ context }: { context: RequestContext }) {