Skip to content

Commit

Permalink
add: bottom bar and top bar
Browse files Browse the repository at this point in the history
  • Loading branch information
nirbhayel committed Nov 15, 2024
1 parent 92e7de2 commit 042568d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions modules/settings/assets/js/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import Box from '@elementor/ui/Box';
import DirectionProvider from '@elementor/ui/DirectionProvider';
import Grid from '@elementor/ui/Grid';
import { ThemeProvider } from '@elementor/ui/styles';
import { ConnectModal, Notifications, MenuItems } from './components';
import { ConnectModal, Notifications, MenuItems, AdminTopBar, BottomBar } from './components';
import { usePluginSettingsContext } from './contexts/plugin-settings';
import { useNotificationSettings, useSettings } from './hooks';
import { Sidebar } from './layouts/sidebar';
Expand All @@ -27,8 +27,10 @@ const App = () => {
flexDirection="row"
height="100%">
<Sidebar />
<Box>
<Box width="100%">
<AdminTopBar />
{ selectedChild ? selectedChild.page : selectedParent?.page }
<BottomBar />
</Box>
</Grid>
<Notifications message={ notificationMessage } type={ notificationType } />
Expand Down

0 comments on commit 042568d

Please sign in to comment.