mirror of
https://github.com/gristlabs/grist-core.git
synced 2024-10-27 20:44:07 +00:00
11 lines
249 B
TypeScript
11 lines
249 B
TypeScript
|
import {DocPageModel} from 'app/client/models/DocPageModel';
|
||
|
import {Disposable} from 'grainjs';
|
||
|
|
||
|
export class DocUsageBanner extends Disposable {
|
||
|
constructor(_docPageModel: DocPageModel) { super(); }
|
||
|
|
||
|
public buildDom() {
|
||
|
return null;
|
||
|
}
|
||
|
}
|