17 lines
469 B
TypeScript
17 lines
469 B
TypeScript
import { setShow, show } from "../functions/exports";
|
|
|
|
function HistShow(_props: any) {
|
|
|
|
const handleSaveShow = (showStr: string) => {
|
|
localStorage.setItem(_props.name, showStr);
|
|
|
|
setShow(+showStr);
|
|
show() == 0 ? setShow(198) : '';
|
|
};
|
|
|
|
return (
|
|
<input class="form-control" onInput={e => handleSaveShow(e.target.value)} placeholder="Show elements" title="Nomber of elements to show" style="max-width: 10em;"></input>
|
|
)
|
|
}
|
|
|
|
export default HistShow
|