import { useState } from 'react'; export default function AboutMe() { const maxLength = 250; const [text, setText] = useState(''); const handleChange = (e) => { const value = e.target.value; if (value.length <= maxLength) { setText(value); } }; return (
ОБО МНЕ
{maxLength - text.length}