Last active
September 12, 2017 14:07
-
-
Save vutran/7eaf50200ad69b6482357deb66ff4f4e to your computer and use it in GitHub Desktop.
Omnibar - Custom Extensions
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 EchoExtension from './EchoExtension'; | |
import GitHubSearchExtension from './GitHubSearchExtension'; | |
import NpmSearchExtension from './NpmSearchExtension'; | |
class App extends React.Component { | |
render() { | |
return ( | |
<Omnibar | |
extensions={[ | |
EchoExtension, | |
GitHubSearchExtension, | |
NpmSearchExtension, | |
]} /> | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment