2023-04-02 00:06:27 -04:00
|
|
|
import React from "react";
|
2023-04-05 23:34:20 -04:00
|
|
|
import * as Iso from "@eno/iso";
|
2023-04-02 00:06:27 -04:00
|
|
|
|
|
|
|
export default ()=>
|
|
|
|
{
|
|
|
|
const [countGet, countSet] = React.useState(1);
|
|
|
|
return <div class="p-4 text-red-500">
|
2023-04-05 23:34:20 -04:00
|
|
|
<Iso.Metas title="Component!"/>
|
2023-04-08 12:38:36 -04:00
|
|
|
<button className="p-4 bg-red-500 text-white" onClick={e=>{countSet(countGet+1)}}>{countGet}</button>
|
2023-04-02 00:06:27 -04:00
|
|
|
Component!!!
|
|
|
|
</div>;
|
|
|
|
};
|