import React from "react";
import { render } from "@testing-library/react";

import { DropDown } from "./DropDown";
import { DropDownProps } from "./DropDown.types";

describe("DropDown Component", () => {
  const renderComponent = () => render(<DropDown foo={"foo"} />);

  it("", () => {
    
  });
});
