From 05abb4981c7898622c45e09a289a2034b7aaf384 Mon Sep 17 00:00:00 2001 From: Nuno Miguel Date: Thu, 8 Aug 2024 16:46:55 +0100 Subject: [PATCH] refactor: remove unused calendar story file --- storybook/components/calendar.story.exs | 32 ------------------------- 1 file changed, 32 deletions(-) delete mode 100644 storybook/components/calendar.story.exs 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