|
@@ -1,12 +1,13 @@
|
|
|
import React, { FC } from 'react';
|
|
import React, { FC } from 'react';
|
|
|
import { useTranslation } from 'react-i18next';
|
|
import { useTranslation } from 'react-i18next';
|
|
|
|
|
|
|
|
|
|
+import ItemsTree from './PageTree/ItemsTree';
|
|
|
|
|
+
|
|
|
|
|
|
|
|
type Props = {
|
|
type Props = {
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
const PageTree:FC<Props> = (props: Props) => {
|
|
const PageTree:FC<Props> = (props: Props) => {
|
|
|
-
|
|
|
|
|
const { t } = useTranslation();
|
|
const { t } = useTranslation();
|
|
|
|
|
|
|
|
return (
|
|
return (
|
|
@@ -14,8 +15,9 @@ const PageTree:FC<Props> = (props: Props) => {
|
|
|
<div className="grw-sidebar-content-header p-3 d-flex">
|
|
<div className="grw-sidebar-content-header p-3 d-flex">
|
|
|
<h3 className="mb-0">{t('Page Tree')}</h3>
|
|
<h3 className="mb-0">{t('Page Tree')}</h3>
|
|
|
</div>
|
|
</div>
|
|
|
|
|
+
|
|
|
<div className="grw-sidebar-content-body p-3">
|
|
<div className="grw-sidebar-content-body p-3">
|
|
|
- TBD
|
|
|
|
|
|
|
+ <ItemsTree />
|
|
|
</div>
|
|
</div>
|
|
|
</>
|
|
</>
|
|
|
);
|
|
);
|