DefaultLayout.jsx 256 B

12345678910111213
  1. import { Layout } from "antd";
  2. import React from "react";
  3. const DefaultLayout = ({ children }) => {
  4. return (
  5. <Layout style={{ backgroundColor: "white", padding: "0 24px 24px" }}>
  6. {children}
  7. </Layout>
  8. );
  9. };
  10. export default DefaultLayout;