import { noop } from 'lodash' import { Button } from 'ui' interface PolicyEditorFooterProps { showTemplates: boolean onViewTemplates: () => void onReviewPolicy: () => void } const PolicyEditorFooter = ({ showTemplates, onViewTemplates = noop, onReviewPolicy = noop, }: PolicyEditorFooterProps) => (