mirror of
https://github.com/pawelmalak/flame.git
synced 2025-07-23 13:29:35 +02:00
14 lines
280 B
TypeScript
14 lines
280 B
TypeScript
|
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>
|
||
|
);
|
||
|
};
|