From f456cd3d8ee9bf2ea4131e3bde23399b0074a9f4 Mon Sep 17 00:00:00 2001 From: Regalijan Date: Tue, 10 Sep 2024 13:33:44 -0400 Subject: [PATCH] Include react-big-calendar stylesheet --- app/routes/events-team.tsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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 }) {