import React, { useState } from 'react'; export const Counter: React.FC = () => { const [count, setCount] = useState(0); return (
100
sdsa
sada
); };