mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Fix exports
This commit is contained in:
parent
1ac964e490
commit
5979609620
1 changed files with 4 additions and 2 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in a new issue