Switch to Preact!!!

This commit is contained in:
Gregory Schier
2023-03-09 00:47:25 -08:00
parent bf8f12274f
commit 4d806ff2b1
29 changed files with 349 additions and 553 deletions

View File

@@ -1,9 +1,9 @@
import classnames from 'classnames';
import type { ReactNode } from 'react';
import type { ComponentChildren } from 'preact';
interface Props {
statusCode: number;
children: ReactNode;
children: ComponentChildren;
}
export function StatusColor({ statusCode, children }: Props) {