This commit is contained in:
parent
361a200d07
commit
a059a3d710
3 changed files with 2 additions and 7 deletions
|
@ -7,7 +7,7 @@ interface IPropertiesProps {
|
||||||
}
|
}
|
||||||
|
|
||||||
export class Properties extends React.PureComponent<IPropertiesProps> {
|
export class Properties extends React.PureComponent<IPropertiesProps> {
|
||||||
public render() {
|
public render(): JSX.Element {
|
||||||
if (this.props.properties === undefined) {
|
if (this.props.properties === undefined) {
|
||||||
return <div></div>;
|
return <div></div>;
|
||||||
}
|
}
|
||||||
|
|
|
@ -14,11 +14,7 @@ interface ISVGProps {
|
||||||
export class SVG extends React.PureComponent<ISVGProps> {
|
export class SVG extends React.PureComponent<ISVGProps> {
|
||||||
public static ID = 'svg';
|
public static ID = 'svg';
|
||||||
|
|
||||||
constructor(props: ISVGProps) {
|
render(): JSX.Element {
|
||||||
super(props);
|
|
||||||
}
|
|
||||||
|
|
||||||
render() {
|
|
||||||
const xmlns = '<http://www.w3.org/2000/svg>';
|
const xmlns = '<http://www.w3.org/2000/svg>';
|
||||||
|
|
||||||
const properties = {
|
const properties = {
|
||||||
|
|
|
@ -8,7 +8,6 @@ import { SVG } from './Components/SVG/SVG';
|
||||||
import { History } from './Components/History/History';
|
import { History } from './Components/History/History';
|
||||||
import { ContainerModel, IContainerModel } from './Interfaces/ContainerModel';
|
import { ContainerModel, IContainerModel } from './Interfaces/ContainerModel';
|
||||||
import { findContainerById, MakeIterator } from './utils/itertools';
|
import { findContainerById, MakeIterator } from './utils/itertools';
|
||||||
import Properties from './Interfaces/Properties';
|
|
||||||
import { IHistoryState } from './App';
|
import { IHistoryState } from './App';
|
||||||
import FloatingButton from './Components/FloatingButton/FloatingButton';
|
import FloatingButton from './Components/FloatingButton/FloatingButton';
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue