mirror of
https://github.com/bendtherules/piktochart-create-editor.git
synced 2026-08-18 13:52:56 +00:00
23 lines
643 B
TypeScript
23 lines
643 B
TypeScript
import * as React from 'react';
|
|
import './CreateEditorApp.css';
|
|
import { DraggableNode } from '../DraggableNode';
|
|
|
|
const logo = require('./logo.svg');
|
|
|
|
export class CreateEditorApp extends React.Component {
|
|
render() {
|
|
return (
|
|
<div className="App">
|
|
<DraggableNode>
|
|
<header className="App-header">
|
|
<img src={logo} className="App-logo" alt="logo" />
|
|
<h1 className="App-title">Welcome to React</h1>
|
|
</header>
|
|
</DraggableNode>
|
|
<p className="App-intro">
|
|
To get started, edit <code>src/App.tsx</code> and save to reload.
|
|
</p>
|
|
</div>
|
|
);
|
|
}
|
|
} |