import { Flex } from "@chakra-ui/react"; import { useColorMode } from "@chakra-ui/react"; import React from "react"; import { TaskOption } from "./TaskOption"; import { TaskOptions } from "./TaskOptions"; export const TaskSelection = () => { const { colorMode } = useColorMode(); const mainBgClasses = colorMode === "light" ? "bg-slate-300 text-gray-800" : "bg-slate-900 text-white"; return ( {/* */} {/* Commented out while the backend does not support them. */} ); };