@volo/abp-react-app-config
v10.3.0
Published
React adapter helpers for @volo/abp-app-config.
Downloads
370
Maintainers
Readme
Description
@volo/abp-react-app-config provides React hooks over @volo/abp-app-config.
Install
npm i @volo/abp-react-app-config @volo/abp-app-configUsage
import { createAbpReactAppConfig } from '@volo/abp-react-app-config'
export const appConfig = createAbpReactAppConfig({
baseUrl: () => window.location.origin,
})
await appConfig.fetchConfig()function Component() {
const { isGranted } = appConfig.usePolicies()
return <>{isGranted('AbpIdentity.Users') ? 'yes' : 'no'}</>
}