19 lines
425 B
JavaScript
19 lines
425 B
JavaScript
|
|
|
||
|
|
import label from '/elements/label.js';
|
||
|
|
|
||
|
|
import collection from "/unify/collection.js";
|
||
|
|
|
||
|
|
import user from "/user/user.js";
|
||
|
|
|
||
|
|
import option from "./edit.user.select.option.js";
|
||
|
|
|
||
|
|
import renderCollection from "./edit.user.select.renderCollection.js";
|
||
|
|
|
||
|
|
|
||
|
|
export default class optionRow{
|
||
|
|
|
||
|
|
label = new label("Select user");
|
||
|
|
|
||
|
|
renderCollection = new renderCollection( option , new collection( user ) );
|
||
|
|
|
||
|
|
}
|