From 45eb79e3a76d2244def1c0d2725db7d1097e0d3f Mon Sep 17 00:00:00 2001 From: "Irsyad A. Panjaitan" Date: Tue, 17 Dec 2024 10:34:40 +0700 Subject: [PATCH] wip --- app/Locale.tsx | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 app/Locale.tsx diff --git a/app/Locale.tsx b/app/Locale.tsx deleted file mode 100644 index 7225646f..00000000 --- a/app/Locale.tsx +++ /dev/null @@ -1,12 +0,0 @@ -"use client" - -import { useLocale } from "react-aria-components" - -export function Locale({ children }: { children: React.ReactNode }) { - const { locale, direction } = useLocale() - return ( -
- {children} -
- ) -}