diff options
| author | nsfisis <nsfisis@gmail.com> | 2024-08-04 14:11:34 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2024-08-04 14:16:59 +0900 |
| commit | fa7755592845a44928e88d2ab78cc04425aa9024 (patch) | |
| tree | a07dc0ee1bef58d24326f5dc1d2734c4ad298ab7 /frontend/app/root.tsx | |
| parent | 4c43d2b7b2b42b0da7863ea468fa39bf8129ebdf (diff) | |
| download | phperkaigi-2025-albatross-fa7755592845a44928e88d2ab78cc04425aa9024.tar.gz phperkaigi-2025-albatross-fa7755592845a44928e88d2ab78cc04425aa9024.tar.zst phperkaigi-2025-albatross-fa7755592845a44928e88d2ab78cc04425aa9024.zip | |
chore(frontend): format
Diffstat (limited to 'frontend/app/root.tsx')
| -rw-r--r-- | frontend/app/root.tsx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/frontend/app/root.tsx b/frontend/app/root.tsx index 58a06dd..57f1a10 100644 --- a/frontend/app/root.tsx +++ b/frontend/app/root.tsx @@ -8,9 +8,9 @@ import { } from "@remix-run/react"; import "./tailwind.css"; -export const links: LinksFunction = () => { - return [{ rel: "icon", href: "/favicon.svg" }]; -}; +export const links: LinksFunction = () => [ + { rel: "icon", href: "/favicon.svg" }, +]; export function Layout({ children }: { children: React.ReactNode }) { return ( |
