File size: 467 Bytes
720aae3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
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
|