mirror of
https://github.com/bendtherules/piktochart-create-editor.git
synced 2026-08-18 13:52:56 +00:00
Add Sidebar, CanvasArea, UploadResourcesInput, AddToCanvasInputArea
All are empty new components
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
.drag-container {
|
||||
overflow: hidden;
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
import * as React from 'react';
|
||||
import './AddToCanvasInput.css';
|
||||
|
||||
interface AddToCanvasInputProps {
|
||||
|
||||
}
|
||||
interface AddToCanvasInputState {
|
||||
}
|
||||
|
||||
export class AddToCanvasInput extends React.Component<AddToCanvasInputProps, AddToCanvasInputState> {
|
||||
constructor(props: AddToCanvasInputProps) {
|
||||
super(props);
|
||||
|
||||
}
|
||||
|
||||
|
||||
render() {
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
export { AddToCanvasInput } from './AddToCanvasInput';
|
||||
@@ -0,0 +1,3 @@
|
||||
.drag-container {
|
||||
overflow: hidden;
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
import * as React from 'react';
|
||||
import './CanvasArea.css';
|
||||
|
||||
interface CanvasAreaProps {
|
||||
|
||||
}
|
||||
interface CanvasAreaState {
|
||||
}
|
||||
|
||||
export class CanvasArea extends React.Component<CanvasAreaProps, CanvasAreaState> {
|
||||
constructor(props: CanvasAreaProps) {
|
||||
super(props);
|
||||
|
||||
}
|
||||
|
||||
|
||||
render() {
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
export { CanvasArea } from './CanvasArea';
|
||||
@@ -0,0 +1,3 @@
|
||||
.drag-container {
|
||||
overflow: hidden;
|
||||
}
|
||||
@@ -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() {
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
export { Sidebar } from './Sidebar';
|
||||
@@ -0,0 +1,3 @@
|
||||
.drag-container {
|
||||
overflow: hidden;
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
import * as React from 'react';
|
||||
import './UploadResourcesInput.css';
|
||||
|
||||
interface UploadResourcesInputProps {
|
||||
|
||||
}
|
||||
interface UploadResourcesInputState {
|
||||
}
|
||||
|
||||
export class UploadResourcesInput extends React.Component<UploadResourcesInputProps, UploadResourcesInputState> {
|
||||
constructor(props: UploadResourcesInputProps) {
|
||||
super(props);
|
||||
|
||||
}
|
||||
|
||||
|
||||
render() {
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
export { UploadResourcesInput } from './UploadResourcesInput';
|
||||
Reference in New Issue
Block a user