25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

24 lines
435 B

  1. import {createTimeline} from "./TimelineComponent";
  2. export default {
  3. title: 'Components/Timeline',
  4. parameters: {
  5. layout: 'fullscreen',
  6. },
  7. args: {
  8. single: false,
  9. }
  10. }
  11. const Template = ({...args}) => {
  12. return createTimeline({...args});
  13. };
  14. export const SingleTimeline = Template.bind({});
  15. SingleTimeline.args = {
  16. single: true,
  17. }
  18. export const TimelineWithAnchors = Template.bind({});
  19. TimelineWithAnchors.args = {}