import Providers from "./Providers";
export default function Layout({ children }) {
return (
<html lang="en" suppressHydrationWarning>
<body suppressHydrationWarning>
<Providers>{children}</Providers>
</body>
</html>
);
}