* applied eslint * add locales and lint the project * removed error boundary * updated locales * fix min files * fix locales
16 lines
278 B
TypeScript
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;
|