mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
add back button
This commit is contained in:
parent
e40afb7706
commit
b4347fc9b7
1 changed files with 18 additions and 3 deletions
|
|
@ -103,9 +103,24 @@ export default function AddRssFeed(): JSX.Element {
|
|||
{errorMessage && (
|
||||
<StyledText style="error">{errorMessage}</StyledText>
|
||||
)}
|
||||
<Button style="ctaDarkYellow" css={{}} onClick={subscribe}>
|
||||
Add
|
||||
</Button>
|
||||
<HStack>
|
||||
<Button
|
||||
style="ctaDarkYellow"
|
||||
css={{ marginRight: '10px' }}
|
||||
onClick={subscribe}
|
||||
>
|
||||
Add
|
||||
</Button>
|
||||
<Button
|
||||
style="ctaGray"
|
||||
css={{}}
|
||||
onClick={async () => {
|
||||
router.push('/settings/rss')
|
||||
}}
|
||||
>
|
||||
Back
|
||||
</Button>
|
||||
</HStack>
|
||||
</VStack>
|
||||
</SettingsLayout>
|
||||
<div data-testid="settings-rss-subscribe-page-tag" />
|
||||
|
|
|
|||
Loading…
Reference in a new issue