Created
September 12, 2017 13:59
-
-
Save vutran/50b573696a9d25ff842a5150886b57bd to your computer and use it in GitHub Desktop.
Omnibar - Voice Commands
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Omnibar from 'omnibar'; | |
import { withVoice } from 'omnibar'; | |
const VoiceOmnibar = withVoice(Omnibar); | |
class App extends React.Component { | |
render() { | |
return ( | |
<VoiceOmnibar | |
extensions={[ | |
EchoExtension, | |
GitHubSearchExtensions, | |
]} /> | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment