import { Text } from "@chakra-ui/react"; import type { FunctionComponent } from "react"; import testIds from "./testIds"; export const EditorsNote: FunctionComponent<{ comment?: string }> = ({ comment, }) => { return ( Editor's note:{" "} {comment} ); };