diff --git a/src/app/App.js b/src/app/App.js new file mode 100644 index 0000000..779b489 --- /dev/null +++ b/src/app/App.js @@ -0,0 +1,10 @@ +// @flow + +import React from "react"; +import ArtifactEditor from "../plugins/artifact/editor/App"; + +export default class App extends React.Component<{}> { + render() { + return ; + } +} diff --git a/src/app/index.js b/src/app/index.js index d722061..3ef8d8d 100644 --- a/src/app/index.js +++ b/src/app/index.js @@ -2,7 +2,7 @@ import React from "react"; import ReactDOM from "react-dom"; import "./index.css"; -import App from "../plugins/artifact/editor/App"; +import App from "./App"; import registerServiceWorker from "./registerServiceWorker"; const root = document.getElementById("root");