Conversation Colors
This commit is contained in:
parent
b63d8e908c
commit
28f016ce48
128 changed files with 3997 additions and 1207 deletions
29
ts/components/Slider.stories.tsx
Normal file
29
ts/components/Slider.stories.tsx
Normal file
|
@ -0,0 +1,29 @@
|
|||
// Copyright 2021 Signal Messenger, LLC
|
||||
// SPDX-License-Identifier: AGPL-3.0-only
|
||||
|
||||
import React, { useState } from 'react';
|
||||
|
||||
import { storiesOf } from '@storybook/react';
|
||||
import { action } from '@storybook/addon-actions';
|
||||
|
||||
import { Slider, PropsType } from './Slider';
|
||||
|
||||
const story = storiesOf('Components/Slider', module);
|
||||
|
||||
const createProps = (): PropsType => ({
|
||||
label: 'Slider Handle',
|
||||
onChange: action('onChange'),
|
||||
value: 30,
|
||||
});
|
||||
|
||||
story.add('Default', () => <Slider {...createProps()} />);
|
||||
|
||||
story.add('Draggable Test', () => {
|
||||
function StatefulSliderController(props: PropsType): JSX.Element {
|
||||
const [value, setValue] = useState(30);
|
||||
|
||||
return <Slider {...props} onChange={setValue} value={value} />;
|
||||
}
|
||||
|
||||
return <StatefulSliderController {...createProps()} />;
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue