mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Add a basic readwise integration page for testing
This commit is contained in:
parent
24893f1cd4
commit
e0611f2429
1 changed files with 15 additions and 0 deletions
15
packages/web/pages/settings/integrations/readwise.tsx
Normal file
15
packages/web/pages/settings/integrations/readwise.tsx
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
import { PageMetaData } from '../../../components/patterns/PageMetaData'
|
||||
import { Readwise } from '../../../components/templates/integrations/Readwise'
|
||||
import { SettingsLayout } from '../../../components/templates/SettingsLayout'
|
||||
|
||||
export default function ReadwisePage(): JSX.Element {
|
||||
return (
|
||||
<>
|
||||
<PageMetaData title="Readwise - Omnivore" path="/integrations/readwise" />
|
||||
<SettingsLayout>
|
||||
<Readwise />
|
||||
</SettingsLayout>
|
||||
<div data-testid="integrations-readwise-page-tag" />
|
||||
</>
|
||||
)
|
||||
}
|
||||
Loading…
Reference in a new issue