habitica-sync/ReactView.js
2021-10-16 14:18:08 +05:30

5 lines
141 B
JavaScript

import * as React from "react";
import App from "./view/App";
export const ReactView = () => {
return React.createElement(App, null);
};