import React from 'react'; interface IProps { children: React.ReactNode; } export const ModalFooter: React.FC = ({ children }) => (
{children}
);