code/tamagui.dev/data/docs/components/intro/1.0.0.mdx
You can install each component separately, or all of them at once with:
yarn add tamagui
The package tamagui is a superset of @tamagui/core, so if you've already installed core you can change all the references to tamagui.
You'll need to add a provider to the root of your app (unlike core, where that is optional), as it will set up the root portal for components like dialogs and popovers.
import { createTamagui, TamaguiProvider, View } from 'tamagui'
import { defaultConfig } from '@tamagui/config/v5' // for quick config install this
const config = createTamagui(defaultConfig)
export default () => (
<TamaguiProvider config={config}>
<View />
</TamaguiProvider>
)
For a full guide configuration with createTamagui, check the core configuration docs.