From a3a6d6a3e979bd34873421b732d9a589354304c0 Mon Sep 17 00:00:00 2001 From: Florian Schroedl Date: Tue, 23 Jan 2024 17:30:03 +0100 Subject: [PATCH] Add options --- src/components/main/routes/Options.tsx | 34 ++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 src/components/main/routes/Options.tsx diff --git a/src/components/main/routes/Options.tsx b/src/components/main/routes/Options.tsx new file mode 100644 index 0000000..9433b2f --- /dev/null +++ b/src/components/main/routes/Options.tsx @@ -0,0 +1,34 @@ +import React, { useState, useEffect } from "react"; +import { Input } from "@/components/ui/input"; +import { path } from "ramda"; +import { ForecastDatePicker } from "@/components/ui/DatePicker"; + +export const Options = function ({ state, updateState }) { + return ( +
+

Options

+ + +
+ ); +};