insomnia/app/ui/components/KeyboardShortcutsTable.js
Gregory Schier 318c35c2cb Move a bunch of stuff to async/await (#39)
* Some minor implementations

* Some more

* Lots more

* Removed 'backend' alias

* removed all promises

* Removed a bunch of module exports stuff

* Some morE'

* Fix

* custom DNS

* Tests for DNS

* bug fix

* Some small adjustments

* Small stuff
2016-10-02 13:57:00 -07:00

50 lines
1.1 KiB
JavaScript

import React, {Component} from 'react';
import {MOD_SYM} from '../../backend/constants';
const KeyboardShortcutsTable = () => (
<table className="wide">
<tbody>
<tr>
<td>Switch Requests</td>
<td><code>{MOD_SYM}P</code></td>
</tr>
<tr>
<td>Send Request</td>
<td><code>{MOD_SYM}Enter</code></td>
</tr>
<tr>
<td>New Request</td>
<td><code>{MOD_SYM}N</code></td>
</tr>
<tr>
<td>Duplicate Request</td>
<td><code>{MOD_SYM}D</code></td>
</tr>
<tr>
<td>Show Cookie Manager</td>
<td><code>{MOD_SYM}K</code></td>
</tr>
<tr>
<td>Show Environment Editor</td>
<td><code>{MOD_SYM}E</code></td>
</tr>
<tr>
<td>Focus URL Bar</td>
<td><code>{MOD_SYM}L</code></td>
</tr>
<tr>
<td>Toggle Sidebar</td>
<td><code>{MOD_SYM}\</code></td>
</tr>
<tr>
<td>Show Settings</td>
<td><code>{MOD_SYM},</code></td>
</tr>
</tbody>
</table>
);
KeyboardShortcutsTable.propTypes = {};
export default KeyboardShortcutsTable;