File size: 326 Bytes
2893bb5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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