mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
318c35c2cb
* 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
50 lines
1.1 KiB
JavaScript
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;
|