Fix exports

This commit is contained in:
Jackson Harper
2024-02-09 13:28:57 +08:00
parent 1ac964e490
commit 5979609620

View File

@ -885,7 +885,7 @@ export function HomeFeedContainer(): JSX.Element {
)
}
type HomeFeedContentProps = {
export type HomeFeedContentProps = {
items: LibraryItem[]
searchTerm?: string
reloadItems: () => void
@ -1027,7 +1027,9 @@ type LibraryItemsLayoutProps = {
setIsChecked: (itemId: string, set: boolean) => void
} & HomeFeedContentProps
function LibraryItemsLayout(props: LibraryItemsLayoutProps): JSX.Element {
export function LibraryItemsLayout(
props: LibraryItemsLayoutProps
): JSX.Element {
const [showUnsubscribeConfirmation, setShowUnsubscribeConfirmation] =
useState(false)
const [showUploadModal, setShowUploadModal] = useState(false)