blob: b065a2653e3c2647b738e300b1ff5f2fec7c5e83 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
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 (
<div className="flex flex-col flex-start gap-[10px] w-[600px] h-[284px]">
<p className="font-medium text-light-violet gap-[10px] ml-[20px]">
ОБО МНЕ
</p>
<div className="flex flex-row flex-end p-[20px] w-[600px] h-[120px] border-solid border-[1px] rounded-[20px]">
<Input
value={text}
onChange={handleChange}
placeholder="Введите описание о себе"
/>
<p className="font-regular flex flex-row justify-center items-end ml-[10px] text-light-violet">
{maxLength - text.length}
</p>
</div>
<Button className="w-[105px]">Сменить</Button>
</div>
);
}
|