Port friends menu over.

This commit is contained in:
Paul
2021-06-19 20:00:30 +01:00
parent 0ff78787a8
commit 0a0c00fe58
18 changed files with 452 additions and 30 deletions

View File

@@ -1,4 +1,4 @@
import { VNode } from "preact";
export type Child = VNode | string | false | undefined;
export type Child = VNode | string | number | boolean | undefined | null;
export type Children = Child | Child[] | Children[];