timgremore's picture
chore: Rename app to Medicode
3f219b5
raw
history blame
532 Bytes
defmodule Storybook.CoreComponents.Modal do
use PhoenixStorybook.Story, :component
alias MedicodeWeb.CoreComponents
def function, do: &CoreComponents.modal/1
def imports, do: [{CoreComponents, [button: 1, hide_modal: 1, show_modal: 1]}]
def template do
"""
<.button phx-click={show_modal(":variation_id")} psb-code-hidden>
Open modal
</.button>
<.psb-variation/>
"""
end
def variations do
[
%Variation{
id: :default,
slots: ["Modal body"]
}
]
end
end