This commit is contained in:
Iliyan Angelov
2025-09-26 00:45:31 +03:00
parent 1e316a763a
commit 3f5bcfad68
2821 changed files with 1043 additions and 38155 deletions

View File

@@ -0,0 +1,17 @@
"use client";
import { ReactNode } from "react";
import Preloader from "./Preloader";
interface LayoutWrapperProps {
children: ReactNode;
}
const LayoutWrapper = ({ children }: LayoutWrapperProps) => {
return (
<Preloader>
{children}
</Preloader>
);
};
export default LayoutWrapper;