import React from "react"; import { Layout } from "antd"; const { Content, Footer } = Layout; const version = import.meta.env.VITE_API_VERSION; const AuthStyles = { layout: { height: "100vh", }, content: { padding: "0 50px", display: "flex", justifyContent: "center", alignItems: "center", }, footer: { textAlign: "center", }, }; const AuthLayout = ({ children }) => { return (
{children}
); }; export default AuthLayout;