import { ModalForm } from '../../../UI'; interface Props { modalHandler: () => void; } export const ThemeEditor = (props: Props): JSX.Element => { return ( {}} modalHandler={props.modalHandler}>

edit

); };