init: add fuse-react v8.3.5 skeleton
This commit is contained in:
15
src/app/theme-layouts/layout1/components/RightSideLayout1.js
Normal file
15
src/app/theme-layouts/layout1/components/RightSideLayout1.js
Normal file
@@ -0,0 +1,15 @@
|
||||
import { memo } from 'react';
|
||||
import QuickPanel from '../../shared-components/quickPanel/QuickPanel';
|
||||
import NotificationPanel from '../../shared-components/notificationPanel/NotificationPanel';
|
||||
|
||||
function RightSideLayout1(props) {
|
||||
return (
|
||||
<>
|
||||
<QuickPanel />
|
||||
|
||||
<NotificationPanel />
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
||||
export default memo(RightSideLayout1);
|
||||
Reference in New Issue
Block a user