Add style and userdata to Container

This commit is contained in:
Siklos 2022-07-31 19:24:24 +02:00
parent 90dac41a04
commit 87baffefff
3 changed files with 12 additions and 2 deletions

View file

@ -9,6 +9,7 @@ interface IContainerProps {
width: number,
height: number,
style?: React.CSSProperties,
userData?: Record<string, string | number | symbol>
}
export class Container extends React.Component<IContainerProps> {