/**
* ListSortControl
* Manages the logic for the control which provides list sorting options.
- * @extends {Component}
*/
-class ListSortControl {
+import {Component} from "./component";
+
+export class ListSortControl extends Component {
setup() {
this.elem = this.$el;
this.form.submit();
}
-}
-
-export default ListSortControl;
\ No newline at end of file
+}
\ No newline at end of file