mirror of
https://github.com/pawelmalak/flame.git
synced 2025-07-26 22:39:36 +02:00
Added custom theme creator
This commit is contained in:
parent
378dd8e36d
commit
9ab6c65d85
10 changed files with 246 additions and 41 deletions
|
@ -0,0 +1,13 @@
|
|||
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>
|
||||
);
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue