medicode / storybook /components /code_select.story.exs
noahsettersten's picture
chore: Ensure `code_select` expands fully, add story
720aae3
raw
history blame
467 Bytes
defmodule MedicalTranscriptionWeb.Storybook.CodeSelect do
use PhoenixStorybook.Story, :live_component
def component, do: MedicalTranscriptionWeb.Components.CodeSelect
def variations do
[
%Variation{
id: :default,
attributes: %{
id: "transcription-row-1-code-select",
text:
"This 55-year-old man with known coronary artery disease comes for a follow-up visit today. "
}
}
]
end
end