import React from 'react'; import InlineMarkdown from 'Components/Markdown/InlineMarkdown'; import styles from './UpdateChanges.css'; interface UpdateChangesProps { title: string; changes: string[]; } function UpdateChanges(props: UpdateChangesProps) { const { title, changes } = props; if (changes.length === 0) { return null; } const uniqueChanges = [...new Set(changes)]; return (
{title}
); } export default UpdateChanges;