Move around files to accomodate external development

This commit is contained in:
Isaac Shoebottom 2023-11-02 11:11:22 -03:00
parent 8b3749d3de
commit be73034d0d
10 changed files with 10 additions and 0 deletions

10
src/lib/react.ts Normal file
View File

@ -0,0 +1,10 @@
import ReactNamespace from 'react/index';
import ReactDomNamespace from 'react-dom';
const React = window.React as typeof ReactNamespace;
const ReactDOM = window.ReactDOM as typeof ReactDomNamespace;
export default React;
export {
ReactDOM
}