mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
19 lines
540 B
TypeScript
19 lines
540 B
TypeScript
import { VStack } from '../../../components/elements/LayoutPrimitives'
|
|
import { SettingsLayout } from '../../../components/templates/SettingsLayout'
|
|
import { applyStoredTheme } from '../../../lib/themeUpdater'
|
|
|
|
export default function BetaFeatures(): JSX.Element {
|
|
applyStoredTheme()
|
|
|
|
return (
|
|
<SettingsLayout>
|
|
<VStack
|
|
css={{ width: '100%', height: '100%', mt: '80px' }}
|
|
distribution="start"
|
|
alignment="center"
|
|
>
|
|
All beta features are enabled.
|
|
</VStack>
|
|
</SettingsLayout>
|
|
)
|
|
}
|