1
0
Fork 0
mirror of https://github.com/pawelmalak/flame.git synced 2025-07-23 13:29:35 +02:00
flame/client/src/components/Settings/Themer/ThemeBuilder/ThemeEditor.tsx

14 lines
280 B
TypeScript
Raw Normal View History

2022-03-24 16:07:14 +01:00
import { ModalForm } from '../../../UI';
interface Props {
modalHandler: () => void;
}
export const ThemeEditor = (props: Props): JSX.Element => {
return (
<ModalForm formHandler={() => {}} modalHandler={props.modalHandler}>
<h1>edit</h1>
</ModalForm>
);
};