Add Sidebar, CanvasArea, UploadResourcesInput, AddToCanvasInputArea

All are empty new components
This commit is contained in:
2018-04-08 12:24:17 +05:30
parent b9279d4ff9
commit 1912d5d0d8
12 changed files with 92 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
import * as React from 'react';
import './Sidebar.css';
interface SidebarProps {
}
interface SidebarState {
}
export class Sidebar extends React.Component<SidebarProps, SidebarState> {
constructor(props: SidebarProps) {
super(props);
}
render() {
}
}