mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
16 lines
467 B
TypeScript
16 lines
467 B
TypeScript
import { NavigationLayout } from '../../components/templates/NavigationLayout'
|
|
import { LibraryContainer } from '../../components/templates/library/LibraryContainer'
|
|
|
|
export default function Subscriptions(): JSX.Element {
|
|
return (
|
|
<NavigationLayout
|
|
section="subscriptions"
|
|
pageMetaDataProps={{
|
|
title: 'Subscriptions',
|
|
path: '/subscriptions',
|
|
}}
|
|
>
|
|
<LibraryContainer folder="following" />
|
|
</NavigationLayout>
|
|
)
|
|
}
|