[frogend] Emoji categories (#1051)

* emoji category combobox

* emoji categorizing

* dropdown entry separation

* emoji filtering/sorting

* add some explaining comments

* remove unneeded default-value code

* remove wrongly created package.json

* configurable ComboBox label+placeHolder
This commit is contained in:
f0x52 2022-11-16 17:05:49 +01:00 committed by GitHub
commit aa5c4e065c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
10 changed files with 249 additions and 35 deletions

View file

@ -32,5 +32,6 @@ function makeHook(func) {
module.exports = {
useTextInput: makeHook(require("./text")),
useFileInput: makeHook(require("./file"))
useFileInput: makeHook(require("./file")),
useComboBoxInput: makeHook(require("./combobox"))
};