openreplay/frontend/app/components/shared/EventSearchInput/EventSearchInput.tsx
Андрей Бабушкин 2b1a9f3378 add locales and lint the project
2025-03-05 16:09:18 +01:00

16 lines
278 B
TypeScript

import React from 'react';
interface Props {}
function EventSearchInput(props) {
return (
<div>
<input
className="border rounded p-1"
type="text"
placeholder="Search for an event"
/>
</div>
);
}
export default EventSearchInput;