import { Layout } from "antd"; import React from "react"; const DefaultLayout = ({ children }) => { return ( <Layout style={{ backgroundColor: "white", padding: "0 24px 24px" }}> {children} </Layout> ); }; export default DefaultLayout;