habitica-sync/ReactView.js

6 lines
141 B
JavaScript
Raw Normal View History

2021-10-16 14:18:08 +05:30
import * as React from "react";
import App from "./view/App";
export const ReactView = () => {
return React.createElement(App, null);
};