2020-05-09 14:45:23 +00:00
|
|
|
import { Component } from "../component";
|
|
|
|
|
|
|
|
|
|
export class UnremovableComponent extends Component {
|
|
|
|
|
static getId() {
|
|
|
|
|
return "Unremovable";
|
|
|
|
|
}
|
2020-05-14 20:46:31 +00:00
|
|
|
|
|
|
|
|
static getSchema() {
|
|
|
|
|
return {};
|
|
|
|
|
}
|
2020-05-09 14:45:23 +00:00
|
|
|
}
|