UNPKG

@mvp-rockets/namma-generator

Version:

A generator to generate mvp-rockets projects

37 lines (30 loc) 820 B
import React from "react"; import BookSession from "../../organisms/BookSession"; export default { title: "organisms/BookSession", component: BookSession, }; const Template = (args) => <BookSession {...args} />; export const bookSession = Template.bind({}); bookSession.args = { bookSessionBreadcrumb: [ { name: "Therapist", path: "" }, { name: "View Details", path: "" }, { name: "Ritika Bhalla Bhutani", path: "" }, ], bookSessionTabs: [ { title: "BOOK A SESSION", active: true }, { title: "BOOK A CHAT SESSION", active: false }, ], timeSlot: [ { time: "02:00pm" }, { time: "03:00pm" }, { time: "04:00pm" }, { time: "05:00pm" }, { time: "06:00pm" }, { time: "07:00pm" }, { time: "08:00pm" }, { time: "09:00pm" }, { time: "10:00pm" }, ], };