Back to React

This commit is contained in:
Gregory Schier
2023-03-13 09:50:49 -07:00
parent 68058f3e41
commit 359e916b73
25 changed files with 377 additions and 616 deletions

View File

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