Skip to content

Commit

Permalink
put booking policy on bookings page (#585)
Browse files Browse the repository at this point in the history
* Made tabs content component with booking policy content

* component mentioned in previous commit

* fixed import error

* fix import

* fix import

---------

Co-authored-by: bcho892 <[email protected]>
  • Loading branch information
Kunalbskr and choden-dev authored Jul 4, 2024
1 parent 27d1736 commit 6dab60b
Show file tree
Hide file tree
Showing 3 changed files with 508 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
import type { Meta } from "@storybook/react"
import {
BehaviourPolicyContent,
BookingPolicyContent,
PolicyTabs
} from "./TabsContent"

const meta: Meta = {
component: PolicyTabs
}

export default meta
export const DefaultPolicyTabs = () => {
return <PolicyTabs />
}

export const BookingPolicyStory = () => {
return <BookingPolicyContent />
}

export const CancellationPolicyStory = () => {
return <CancellationPolicyStory />
}

export const BehaviourPolicyStory = () => {
return <BehaviourPolicyContent />
}
Loading

0 comments on commit 6dab60b

Please sign in to comment.