Rename and move app to CreateEditorApp

This commit is contained in:
2018-04-07 14:06:15 +05:30
parent 5c57e278f1
commit e6a37a507d
7 changed files with 28 additions and 26 deletions
@@ -0,0 +1,23 @@
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>
);
}
}