mirror of
https://github.com/gristlabs/grist-core.git
synced 2024-10-27 20:44:07 +00:00
ed37401b2c
Summary: Adds an activation page to grist-ee that currently shows activation status. Follow-up diffs will introduce additional functionality, such as the ability to enter activation keys directly from the activation page. Test Plan: No grist-ee tests (yet). Reviewers: paulfitz Reviewed By: paulfitz Subscribers: dsagal, paulfitz Differential Revision: https://phab.getgrist.com/D3582
13 lines
239 B
TypeScript
13 lines
239 B
TypeScript
import {AppModel} from 'app/client/models/AppModel';
|
|
import {Disposable} from 'grainjs';
|
|
|
|
export class ActivationPage extends Disposable {
|
|
constructor(_appModel: AppModel) {
|
|
super();
|
|
}
|
|
|
|
public buildDom() {
|
|
return null;
|
|
}
|
|
}
|