mirror of
https://github.com/gristlabs/grist-core.git
synced 2026-03-02 04:09:24 +00:00
(core) Use new Banner component for activation messages
Summary: Use new Banner component for activation messages. Test Plan: Existing tests. Reviewers: paulfitz Reviewed By: paulfitz Differential Revision: https://phab.getgrist.com/D3483
This commit is contained in:
10
stubs/app/client/components/Banners.ts
Normal file
10
stubs/app/client/components/Banners.ts
Normal file
@@ -0,0 +1,10 @@
|
||||
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;
|
||||
}
|
||||
@@ -1,10 +0,0 @@
|
||||
import {DocPageModel} from 'app/client/models/DocPageModel';
|
||||
import {Disposable} from 'grainjs';
|
||||
|
||||
export class DocUsageBanner extends Disposable {
|
||||
constructor(_docPageModel: DocPageModel) { super(); }
|
||||
|
||||
public buildDom() {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user