able-baker/app.tsx

12 lines
358 B
TypeScript

import * as ISO from ">able/iso-elements.tsx";
import React from "react";
const Custom =()=>{
const [countGet, countSet] = React.useState(5)
return <h1 class="p-4 bg-emerald-400 font-black" onClick={_=>countSet(countGet+1)}>CUSTOM {countGet}</h1>;
}
export default ()=><div>
<h1 class="p-4 bg-blue-500 text-white">App</h1>
<Custom/>
</div>;