mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
15 lines
342 B
TypeScript
15 lines
342 B
TypeScript
import { PrimaryLayout } from '../components/templates/PrimaryLayout'
|
|
|
|
export default function Discover(): JSX.Element {
|
|
return (
|
|
<PrimaryLayout
|
|
pageMetaDataProps={{
|
|
title: 'Discover - Omnivore',
|
|
path: '/discover',
|
|
}}
|
|
pageTestId="discover-page-tag"
|
|
>
|
|
Discover Page
|
|
</PrimaryLayout>
|
|
)
|
|
}
|