import * as React from "react";

import { useTranslation } from "../..";

import { StepProps } from "./types";
import { Description } from "./layout";

export const Settings: React.FC<StepProps> = ({ state, updateState }) => {
  const [t] = useTranslation(["opendash"]);

  return <Description children={t("data_explorer.step_3_no_settings")} />;
};
