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