gristlabs_grist-core/stubs/app/client/components/DocUsageBanner.ts
George Gevoian f837f43e55 (core) fix inconsistent name of directory for DocUsageBanner.ts
Summary:
Usage banner is expected at app/client/components, not
app/client/component. Unclear why core smoke test did not catch
this.

Test Plan: manual

Reviewers: paulfitz

Reviewed By: paulfitz

Differential Revision: https://phab.getgrist.com/D3458
2022-05-31 16:42:29 -07:00

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;
}
}