build files added

This commit is contained in:
Leoh 2021-10-16 14:18:08 +05:30
parent 83e98e6984
commit 5db9e24ccf
5 changed files with 72 additions and 7 deletions

5
ReactView.js Normal file
View file

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