medicode / storybook /components /code_select.story.exs
timgremore's picture
chore: Rename app to Medicode
3f219b5
raw
history blame
443 Bytes
defmodule MedicodeWeb.Storybook.CodeSelect do
use PhoenixStorybook.Story, :live_component
def component, do: MedicodeWeb.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