feat: init commit for setup monorepo

This commit is contained in:
Firman Ramdhani
2026-01-05 17:38:05 +07:00
parent 93d04e660e
commit e6485b066d
34 changed files with 785 additions and 261 deletions
+16
View File
@@ -0,0 +1,16 @@
import React, { useState } from 'react';
export const Counter: React.FC = () => {
const [count, setCount] = useState(0);
return (
<div>
<div className="bg-red-400 text-3xl font-bold underline">100</div>
<div className="mt-3 bg-brand-500 text-brand-800">sdsa</div>
<div className="text-5xl text-green-500">sada</div>
<button id="counter" type="button" onClick={() => setCount(count + 1)}>
{count}
</button>
</div>
);
};