mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Add beta alert
This commit is contained in:
parent
c5cbe373e7
commit
41d70bcfb0
2 changed files with 7 additions and 0 deletions
5
packages/web/components/templates/BetaFeature.tsx
Normal file
5
packages/web/components/templates/BetaFeature.tsx
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
import { Alert } from 'antd'
|
||||
|
||||
export function BetaFeature(): JSX.Element {
|
||||
return <Alert message="Beta" type="warning" showIcon />
|
||||
}
|
||||
|
|
@ -9,6 +9,7 @@ import {
|
|||
VStack,
|
||||
} from '../../../components/elements/LayoutPrimitives'
|
||||
import { PageMetaData } from '../../../components/patterns/PageMetaData'
|
||||
import { BetaFeature } from '../../../components/templates/BetaFeature'
|
||||
import { SettingsLayout } from '../../../components/templates/SettingsLayout'
|
||||
import { useGetIntegrationsQuery } from '../../../lib/networking/queries/useGetIntegrationsQuery'
|
||||
|
||||
|
|
@ -43,6 +44,7 @@ export default function Notion(): JSX.Element {
|
|||
height={75}
|
||||
/>
|
||||
<Header>Notion integration settings</Header>
|
||||
<BetaFeature />
|
||||
</HStack>
|
||||
|
||||
{notion && (
|
||||
|
|
|
|||
Loading…
Reference in a new issue