20 lines
540 B
TypeScript
20 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>
|
|
)
|
|
}
|