16 lines
354 B
JavaScript
16 lines
354 B
JavaScript
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);
|