import React from "react"; import { Form } from "react-bootstrap"; import { Modal } from "src/components/Shared"; import { faCogs } from "@fortawesome/free-solid-svg-icons"; import { useIntl } from "react-intl"; import { MarkdownPage } from "../Shared/MarkdownPage"; interface IReleaseNotesDialog { notes: string[]; onClose: () => void; } export const ReleaseNotesDialog: React.FC = ({ notes, onClose, }) => { const intl = useIntl(); return (
{notes.map((n, i) => ( ))}
); }; export default ReleaseNotesDialog;