Using npm:
npm i @odigos/ui-theme
Using yarn:
yarn add @odigos/ui-theme
Wrap your app with the theme provider:
import { Theme } from '@odigos/ui-theme'
const AppProviders = () => {
const darkMode = true
return (
<Theme.Provider darkMode={darkMode}>
<App />
</Theme.Provider>
)
}