<ActionLinkhref="/subpage">Go to sub page</ActionLink>
</ConfigProvider>
)
Constants
A common pattern is to expose some global constants to an app.
That could either be fixed sizes for elements that have a fixed position such as the navigation.
Another common type of constants are z-indices.
const constants ={
HEADER_HEIGHT:70,
zIndex:{
COOKIES:3,
HEADER:2,
MODAL:1,
},
}
const config ={
...baseConfig,
constants,
}
Accessing Config
Similar to Theming, Flora exports a hook that will return the current config.