浏览代码

export DescendantsPageListProps

yohei0125 3 年之前
父节点
当前提交
8c91aa685d
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      packages/app/src/components/DescendantsPageList.tsx

+ 2 - 2
packages/app/src/components/DescendantsPageList.tsx

@@ -130,11 +130,11 @@ export const DescendantsPageListSubstance = (props: SubstanceProps): JSX.Element
   );
 };
 
-type Props = {
+export type DescendantsPageListProps = {
   path: string,
 }
 
-export const DescendantsPageList = (props: Props): JSX.Element => {
+export const DescendantsPageList = (props: DescendantsPageListProps): JSX.Element => {
   const { path } = props;
 
   const [activePage, setActivePage] = useState(1);