+
+
+
+ Description: {description}
+
+
+
+ );
+}
diff --git a/client/src/containers/Drawers/ManualJournalDrawer/index.js b/client/src/containers/Drawers/ManualJournalDrawer/index.js
new file mode 100644
index 000000000..27397d9c9
--- /dev/null
+++ b/client/src/containers/Drawers/ManualJournalDrawer/index.js
@@ -0,0 +1,37 @@
+import React, { lazy } from 'react';
+import { Drawer, DrawerSuspense } from 'components';
+import withDrawers from 'containers/Drawer/withDrawers';
+import withDrawerActions from 'containers/Drawer/withDrawerActions';
+
+import { compose } from 'utils';
+
+const ManualJournalDrawerContent = lazy(() =>
+ import('./ManualJournalDrawerContent'),
+);
+
+/**
+ * Manual journal drawer.
+ */
+function ManualJournalDrawer({
+ name,
+
+ //#withDrawer
+ isOpen,
+ payload: { manualJournalId, title },
+
+ closeDrawer,
+}) {
+ // Handle close drawer.
+ const handleDrawerClose = () => {
+ closeDrawer(name);
+ };
+ return (
+