Footer Configuration
import { FooterType } from './AppEnums';
const defaultConfig = {
...
footer: false, // using this you can show/hide the footer
footerType: FooterType.FLUID, // using this we can update footer type fixed/fluid
...
};
export default defaultConfig;
####### Footer Type (src/@crema/constants/AppEnums.js) #########
export const FooterType = {
FIXED: 'fixed',
FLUID: 'fluid',
}; 