import { addTheme } from '@tamagui/theme' import React from 'react' import { Button, H3, Theme, View, YStack } from 'tamagui' export function AddThemeDemo() { const [theme, setTheme] = React.useState() return (

Theme: {theme ?? 'none'}

) }