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 | |