This commit is contained in:
Shusui MOYATANI
2023-03-05 09:05:21 +09:00
parent 0327af6ba1
commit 30e6e894ed
13 changed files with 144 additions and 102 deletions

View File

@@ -13,6 +13,7 @@ import useSubscription from '@/clients/useSubscription';
import useFollowings from '@/clients/useFollowings';
import usePubkey from '@/clients/usePubkey';
import useShortcutKeys from '@/hooks/useShortcutKeys';
import ensureNonNull from '@/hooks/ensureNonNull';
useShortcutKeys({
onShortcut: (s) => console.log(s),
@@ -106,6 +107,7 @@ const Home: Component = () => {
});
};
const japaneseRegex = /[あ-ん]/;
return (
<div class="flex h-screen w-screen flex-row overflow-hidden">
<SideBar postForm={() => <NotePostForm onPost={handlePost} />} />