10 lines
172 B
JavaScript
10 lines
172 B
JavaScript
|
// @flow
|
||
|
/**
|
||
|
* Method used in order to render a custom promotional footer.
|
||
|
*
|
||
|
* @returns {HTMLElement}
|
||
|
*/
|
||
|
export function renderPromotionalFooter() {
|
||
|
return null;
|
||
|
}
|