I'd like to be able to something like this where `component` is the tab that we just switched to. ```v mut tabbox := ui.Tabbox.new( on_change: fn (tab_name string, mut component Component) { // do something with tab_name and component } ) ```