From d60ac3e373593d678a64c8434f7c8d53af152fa1 Mon Sep 17 00:00:00 2001 From: SrGooglo Date: Tue, 22 Nov 2022 00:37:28 +0000 Subject: [PATCH] fix mobile layout --- packages/app/src/layouts/mobile/index.jsx | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/packages/app/src/layouts/mobile/index.jsx b/packages/app/src/layouts/mobile/index.jsx index e991d5da..0131f103 100755 --- a/packages/app/src/layouts/mobile/index.jsx +++ b/packages/app/src/layouts/mobile/index.jsx @@ -2,18 +2,20 @@ import React from "react" import classnames from "classnames" import * as antd from "antd" -import { Drawer, BottomBar } from "components/Layout" +import { BottomBar, Drawer, Sidedrawer, Modal } from "components/Layout" export default (props) => { return - - -
- {React.cloneElement(props.children, props)} -
-
-
- + + + +
+ {React.cloneElement(props.children, props)} +
+
+ + +
}