(title string, items []string)
| 1939 | } |
| 1940 | |
| 1941 | func newSingleSelectModel(title string, items []string) singleSelectModel { |
| 1942 | return singleSelectModel{title: title, items: items} |
| 1943 | } |
| 1944 | |
| 1945 | func (m singleSelectModel) Init() tea.Cmd { return nil } |
| 1946 |