import React from "react";
import ReactDOM from "react-dom";
function App(props: {text: string}){
return <div>Hello, {props.text}</div>
}
const el = document.createElement("div");
document.body.append(el);
ReactDOM.render(<App text="john doe" />, el);
// console
console.log("hello");
console.log("hello");
console.log("hello");
console.log("hello");
console.log("hello");
console.warn("warn");
console.error("error");