mirror of
https://github.com/gristlabs/grist-core.git
synced 2024-10-27 20:44:07 +00:00
7176b7efb6
Summary: Use new Banner component for activation messages. Test Plan: Existing tests. Reviewers: paulfitz Reviewed By: paulfitz Differential Revision: https://phab.getgrist.com/D3483
11 lines
269 B
TypeScript
11 lines
269 B
TypeScript
import {AppModel} from 'app/client/models/AppModel';
|
|
import {DocPageModel} from 'app/client/models/DocPageModel';
|
|
|
|
export function buildHomeBanners(_app: AppModel) {
|
|
return null;
|
|
}
|
|
|
|
export function buildDocumentBanners(_docPageModel: DocPageModel) {
|
|
return null;
|
|
}
|