| 1234567891011121314151617181920212223 |
- import React, { FC } from 'react';
- import { useTranslation } from 'react-i18next';
- import ItemsTree from './PageTree/ItemsTree';
- const PageTree: FC = () => {
- const { t } = useTranslation();
- return (
- <>
- <div className="grw-sidebar-content-header p-3 d-flex">
- <h3 className="mb-0">{t('Page Tree')}</h3>
- </div>
- <div className="grw-sidebar-content-body p-3">
- <ItemsTree />
- </div>
- </>
- );
- };
- export default PageTree;
|