Ad keyboard support notes

This commit is contained in:
Tessa Kelly 2022-04-18 18:38:46 -07:00
parent cd1a4a0549
commit 659ad03471

View File

@ -10,6 +10,7 @@ import Accessibility.Styled.Key as Key
import Category
import Example exposing (Example)
import Html.Styled as Html
import KeyboardSupport exposing (Key(..))
import Nri.Ui.Heading.V2 as Heading
import Nri.Ui.Switch.V2 as Switch
@ -69,5 +70,9 @@ example =
]
]
, categories = [ Category.Inputs ]
, keyboardSupport = [{- TODO -}]
, keyboardSupport =
[ { keys = [ Space ]
, result = "Toggle the Switch state"
}
]
}