signal-desktop/sticker-creator/elements/LabeledInput.stories.tsx

31 lines
729 B
TypeScript
Raw Normal View History

2020-10-30 20:34:04 +00:00
// Copyright 2019-2020 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
2019-12-17 20:25:57 +00:00
import * as React from 'react';
import { text } from '@storybook/addon-knobs';
import { StoryRow } from './StoryRow';
import { LabeledInput } from './LabeledInput';
2022-06-07 00:48:02 +00:00
export default {
title: 'Sticker Creator/elements',
};
export const _LabeledInput = (): JSX.Element => {
2019-12-17 20:25:57 +00:00
const child = text('label', 'foo bar');
const placeholder = text('placeholder', 'foo bar');
const [value, setValue] = React.useState('');
return (
<StoryRow>
<LabeledInput value={value} onChange={setValue} placeholder={placeholder}>
{child}
</LabeledInput>
</StoryRow>
);
2022-06-07 00:48:02 +00:00
};
_LabeledInput.story = {
name: 'LabeledInput',
};