mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 23:00:30 +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
15 lines
305 B
JavaScript
15 lines
305 B
JavaScript
import React, {PropTypes} from 'react';
|
|
import {MOD_SYM} from '../../../backend/constants';
|
|
|
|
const DropdownHint = ({char}) => (
|
|
<div className="dropdown__hint">
|
|
<span>{MOD_SYM}{char}</span>
|
|
</div>
|
|
);
|
|
|
|
DropdownHint.propTypes = {
|
|
char: PropTypes.string.isRequired
|
|
};
|
|
|
|
export default DropdownHint;
|