Add TextBuffer component

This commit is contained in:
He4eT 2021-02-25 19:04:26 +05:00
commit 95c8ae8780
3 changed files with 91 additions and 20 deletions

View file

@ -0,0 +1,8 @@
import { h } from 'preact'
// import { useState, useEffect } from 'preact/hooks'
export default function ({ currentWindow, inputType, sendMessage }) {
return (
<div>InputBox</div>
)
}