- bumped version to 2.3.3

- fixed text alignment issues
- updated dependencies
- added ukranian language
This commit is contained in:
Amruth Pillai
2020-12-09 10:40:27 +05:30
parent 88a3fe5148
commit df71b86028
32 changed files with 942 additions and 1021 deletions

View File

@ -60,16 +60,14 @@ const SidebarSection = ({ id, event }) => {
);
};
const LeftSidebar = () => {
return (
<div className="flex">
<LeftNavbar />
const LeftSidebar = () => (
<div className="flex">
<LeftNavbar />
<div id="LeftSidebar" className={styles.container}>
{sections.map(SidebarSection)}
</div>
<div id="LeftSidebar" className={styles.container}>
{sections.map(SidebarSection)}
</div>
);
};
</div>
);
export default memo(LeftSidebar);