From 7bed84112106095cbf51a81a823a027d7a2e0d30 Mon Sep 17 00:00:00 2001 From: m5r Date: Wed, 13 Jul 2022 23:57:07 +0200 Subject: [PATCH] reorganize import --- app/routes/__app.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/routes/__app.tsx b/app/routes/__app.tsx index f8e5d1a..1f0a69c 100644 --- a/app/routes/__app.tsx +++ b/app/routes/__app.tsx @@ -1,3 +1,4 @@ +import { useEffect } from "react"; import { type LinksFunction, type LoaderFunction, json } from "@remix-run/node"; import { Outlet, useCatch, useLoaderData, useMatches } from "@remix-run/react"; import * as Sentry from "@sentry/browser"; @@ -11,7 +12,6 @@ import useServiceWorkerRevalidate from "~/features/core/hooks/use-service-worker import useDevice from "~/features/phone-calls/hooks/use-device"; import footerStyles from "~/features/core/components/footer.css"; import appStyles from "~/styles/app.css"; -import { useEffect } from "react"; export const links: LinksFunction = () => [ { rel: "stylesheet", href: appStyles },