mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 23:00:30 +00:00
42e198bf75
* Gruvbox theme * Added Storybook for all components that don't fail in browser
10 lines
269 B
JavaScript
10 lines
269 B
JavaScript
import React from 'react';
|
|
import '../../../../.storybook/index.less';
|
|
import Editable from './editable';
|
|
|
|
export default { title: 'Editable' };
|
|
|
|
export const input = () => (
|
|
<Editable value="Double-click to edit me" onSubmit={v => console.log('New value', v)} />
|
|
);
|