Big refactoring with properties + Implement Property

This commit is contained in:
Siklos 2022-08-01 16:16:31 +02:00
parent 43fb019e05
commit d2492520b4
5 changed files with 133 additions and 28 deletions

View file

@ -0,0 +1,7 @@
import * as React from 'react';
export default interface Properties extends React.CSSProperties {
id: string,
x: number,
y: number,
}