insomnia/packages/insomnia-app/app/ui/components/base/editable.stories.js
Gregory Schier 42e198bf75
Add Storybook with basic components (#1807)
* Gruvbox theme

* Added Storybook for all components that don't fail in browser
2019-11-26 12:22:21 -05:00

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)} />
);