1
0
Fork 0
mirror of https://github.com/kou029w/quot.git synced 2025-01-19 08:28:09 +00:00
quot/app/src/components/editor.tsx

15 lines
270 B
TypeScript
Raw Normal View History

2022-08-23 09:49:34 +09:00
import "./editor.css";
export default () => (
<textarea
class="editor"
autofocus
onInput={(e) => {
e.currentTarget.setAttribute(
"rows",
String(Math.max(2, e.currentTarget.value.split("\n").length))
);
}}
></textarea>
);