added transitionLayer to login layout

This commit is contained in:
srgooglo 2022-10-11 13:26:08 +02:00
parent b9212833e5
commit 1666d651d1

View File

@ -1,5 +1,4 @@
import React from "react"
import classnames from "classnames"
import * as antd from "antd"
import { Drawer, Sidedrawer } from "components/Layout"
@ -8,6 +7,8 @@ export default (props) => {
return <antd.Layout className="app_layout" style={{ height: "100%" }}>
<Drawer />
<Sidedrawer />
{React.cloneElement(props.children, props)}
<div id="transitionLayer" className="fade-transverse-active">
{React.cloneElement(props.children, props)}
</div>
</antd.Layout>
}