You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
570 B
35 lines
570 B
2 years ago
|
import React from 'react';
|
||
|
import GasSlider from '.';
|
||
|
|
||
|
export default {
|
||
|
title: 'Components/App/GasCustomization/GasSlider',
|
||
|
id: __filename,
|
||
|
argTypes: {
|
||
|
onChange: {
|
||
|
action: 'onChange',
|
||
|
},
|
||
|
lowLabel: {
|
||
|
control: 'text',
|
||
|
},
|
||
|
highLabel: {
|
||
|
control: 'text',
|
||
|
},
|
||
|
value: {
|
||
|
control: 'number',
|
||
|
},
|
||
|
step: {
|
||
|
control: 'number',
|
||
|
},
|
||
|
max: {
|
||
|
control: 'number',
|
||
|
},
|
||
|
min: {
|
||
|
control: 'number',
|
||
|
},
|
||
|
},
|
||
|
};
|
||
|
|
||
|
export const DefaultStory = () => <GasSlider />;
|
||
|
|
||
|
DefaultStory.storyName = 'Default';
|