class DropDownComponent(val initialValues: List) fun test(strings: List) { val dropDown = DropDownComponent( initialValues = buildList { addAll(strings) } ) }