All files / app/components/MarkdownInput MarkdownInput.tsx

60% Statements 3/5
100% Branches 0/0
0% Functions 0/2
75% Lines 3/4

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26  7x       7x             7x                          
import ToastUIEditor from "@toast-ui/editor";
import dynamic from "next/dynamic";
import { MutableRefObject } from "react";
import { Control } from "react-hook-form";
 
const MarkdownInput = dynamic(
  () => import("components/MarkdownInput/MarkdownInputNoSSR"),
  {
    ssr: false,
  }
);
 
export default MarkdownInput;
 
export interface MarkdownInputProps {
  control: Control;
  defaultValue?: string;
  id: string;
  resetInputRef?: MutableRefObject<ToastUIEditor["reset"] | null>;
  labelId: string;
  name: string;
  imageUpload?: boolean;
  required?: string;
  autofocus?: boolean;
}