style: apply consistent code formatting across project files

This commit is contained in:
Firman Ramdhani
2026-09-16 13:14:02 +07:00
parent d5791e759e
commit 51d05653c6
48 changed files with 3585 additions and 2575 deletions
+2 -6
View File
@@ -1,9 +1,5 @@
import { AppLayout } from "@/components/AppLayout";
import { AppLayout } from '@/components/AppLayout'
export default function Layout({ children }: { children: React.ReactNode }) {
return (
<AppLayout>
{children}
</AppLayout>
);
return <AppLayout>{children}</AppLayout>
}