2025-03-07 16:13:58 +03:00

10 lines
168 B
TypeScript

import { ContactsScroller } from './components';
export function OrderForm() {
return (
<div className="space-y-2">
<ContactsScroller />
</div>
);
}