I hereby claim:
- I am vutran on github.
- I am vutran (https://keybase.io/vutran) on keybase.
- I have a public key ASB44jpd0MJ8LJSl0B6nrRTA0s-m3PhVNu9w4LRPiDhdFQo
To claim this, I am signing this object:
| javascript:void(window.open("","dp_debugger","width=600,height=600,location=0,menubar=0,status=1,toolbar=0,resizable=1,scrollbars=1").document.write("<script language='JavaScript' id=dbg src='https://www.adobetag.com/d1/digitalpulsedebugger/live/DPD.js'></"+"script>")); |
I hereby claim:
To claim this, I am signing this object:
| import Omnibar from 'omnibar'; | |
| import EchoExtension from './EchoExtension'; | |
| class App extends React.Component { | |
| render() { | |
| <Omnibar | |
| placeholder="Enter an expression" | |
| extensions={[EchoExtension]} /> | |
| } | |
| } |
| export default function EchoExtension(query) { | |
| return [ | |
| { | |
| title: query, | |
| subtitle: query, | |
| }, | |
| ]; | |
| } |
| 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={[ |
| function ResultItem(props) { | |
| return ( | |
| <div> | |
| <a href={props.url}>{props.title}</a> | |
| </div> | |
| ); | |
| }; | |
| class App extends React.Component { | |
| render() { |
| import { command } from 'omnibar'; | |
| import GitHubSearchExtension from './GitHubSearchExtension'; | |
| const GHExtension = command(GitHubSearchExtension, 'gh'); | |
| class App extends React.Component { | |
| render() { | |
| return ( | |
| <Omnibar extensions={[GHExtension]} /> | |
| ); |
| import Omnibar from 'omnibar'; | |
| import { withVoice } from 'omnibar'; | |
| const VoiceOmnibar = withVoice(Omnibar); | |
| class App extends React.Component { | |
| render() { | |
| return ( | |
| <VoiceOmnibar | |
| extensions={[ |
| [ | |
| { | |
| "monster_id": "aptonoth", // by english name | |
| "name": { | |
| "en": "Aptonoth", | |
| "ja": "アプトノス" | |
| }, | |
| }, | |
| { | |
| "monster_id": "mernos", |