beautiful works with tailwind webpack

This commit is contained in:
talksik
2022-03-17 10:27:42 -04:00
parent 20ddc5a324
commit 6e73313748
10 changed files with 104 additions and 16 deletions
+4 -1
View File
@@ -4,7 +4,10 @@ import * as React from "react";
import * as ReactDOM from "react-dom";
function render() {
ReactDOM.render(<h2>Hello from React!</h2>, document.getElementById("root"));
ReactDOM.render(
<h2 className="text-sm bg-black">Hello from React!</h2>,
document.getElementById("root")
);
}
render();