mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-15 20:30:33 +00:00
feat: application preferences.
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
import React from 'react';
|
||||
import classNames from 'classnames';
|
||||
import { Scrollbar } from 'react-scrollbars-custom';
|
||||
import { CLASSES } from 'common/classes';
|
||||
|
||||
export default function PreferencesSidebarContainer({ children }) {
|
||||
return (
|
||||
<div
|
||||
className={classNames(
|
||||
CLASSES.PREFERENCES_PAGE_SIDEBAR,
|
||||
CLASSES.PREFERENCES_SIDEBAR,
|
||||
)}
|
||||
>
|
||||
<div class="preferences-sidebar__wrapper">
|
||||
<Scrollbar noDefaultStyles={true}>
|
||||
<div class="preferences-sidebar__inner">{children}</div>
|
||||
</Scrollbar>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user