'use client'; import { Input } from '@/components/ui'; import React from 'react'; export function SourceInput() { const handleKeyDown = (e: React.KeyboardEvent) => { if (e.key === 'Enter') { e.preventDefault(); } }; return (
ИСТОЧНИК
); }