mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
13 lines
315 B
TypeScript
13 lines
315 B
TypeScript
import React, { FunctionComponent } from 'react';
|
|
|
|
import { Editable } from './base/editable';
|
|
|
|
interface Props {
|
|
onSubmit: () => void;
|
|
value: string;
|
|
}
|
|
|
|
export const UnitTestEditable: FunctionComponent<Props> = ({ onSubmit, value }) => {
|
|
return <Editable singleClick onSubmit={onSubmit} value={value} />;
|
|
};
|