diff --git a/storybook/components/calendar.story.exs b/storybook/components/calendar.story.exs deleted file mode 100644 index f4e6679ed..000000000 --- a/storybook/components/calendar.story.exs +++ /dev/null @@ -1,32 +0,0 @@ -defmodule AtomicWeb.Storybook.Components.Calendar do - use PhoenixStorybook.Story, :component - - alias AtomicWeb.Components.Calendar - - def function, do: &Calendar.calendar/1 - - def variations do - [ - %Variation{ - id: :default, - attributes: %{ - current_path: "/storybook/components/calendar", - activities: [], - mode: "month", - timezone: "Europe/Lisbon", - params: %{} - } - }, - %Variation{ - id: :weekly, - attributes: %{ - current_path: "/storybook/components/calendar", - activities: [], - mode: "week", - timezone: "Europe/Lisbon", - params: %{} - } - } - ] - end -end