fix: header nav load more app (#296)

This commit is contained in:
zxhlyh
2023-06-06 10:42:32 +08:00
committed by GitHub
parent d70086b841
commit e61c84ca72
4 changed files with 96 additions and 62 deletions

View File

@@ -24,6 +24,7 @@ const Nav = ({
navs,
createText,
onCreate,
onLoadmore,
}: INavProps) => {
const [hovered, setHovered] = useState(false)
const segment = useSelectedLayoutSegment()
@@ -62,6 +63,7 @@ const Nav = ({
navs={navs}
createText={createText}
onCreate={onCreate}
onLoadmore={onLoadmore}
/>
</>
)