2022-03-23 22:55:22 +11:00
|
|
|
import React from 'react';
|
2022-03-23 23:13:58 +11:00
|
|
|
import { UserIcon } from './Icons';
|
2022-03-23 22:55:22 +11:00
|
|
|
|
2022-03-26 17:00:21 +11:00
|
|
|
export const Header = () => {
|
|
|
|
const handleSearchInputChange = (e: React.ChangeEvent<HTMLInputElement>) => {
|
|
|
|
console.log(e.currentTarget.value);
|
|
|
|
};
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div>
|
|
|
|
<a href="./">Q & A</a>
|
|
|
|
<input
|
|
|
|
type="text"
|
|
|
|
placeholder="Search ..."
|
|
|
|
onChange={handleSearchInputChange}
|
|
|
|
/>
|
|
|
|
<a href="./signin">
|
|
|
|
<UserIcon />
|
|
|
|
<span>Sign In</span>
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
};
|