Footer Type
To set the default footer type
const defaultConfig = {
footerType: FooterType.FLUID, // You can change it according your requirement
};
export default defaultConfig;
####### Footer Type (src/shared/constants/AppEnums.js) #########
export const FooterType = {
FIXED: 'fixed',
FLUID: 'fluid',
};
Last updated