medicode / storybook /components /loading_message.story.exs
noahsettersten's picture
docs: `loading_message` doc, attributes, and story
2893bb5
raw
history blame
326 Bytes
defmodule MedicalTranscriptionWeb.Storybook.LoadingMessage do
use PhoenixStorybook.Story, :component
def function, do: &MedicalTranscriptionWeb.Components.loading_message/1
def variations do
[
%Variation{
id: :default,
attributes: %{
visible: true
}
}
]
end
end