adding in main files and working with everything

This commit is contained in:
talksik
2022-03-17 10:59:23 -04:00
parent 6e73313748
commit e631a47149
17 changed files with 434 additions and 27 deletions
+3 -4
View File
@@ -3,11 +3,10 @@ import "./index.css";
import * as React from "react";
import * as ReactDOM from "react-dom";
import NirvanaApp from "./nirvanaApp";
function render() {
ReactDOM.render(
<h2 className="text-sm bg-black">Hello from React!</h2>,
document.getElementById("root")
);
ReactDOM.render(<NirvanaApp />, document.getElementById("root"));
}
render();