From f31fd75efcf6971048c0111860be5c25de925075 Mon Sep 17 00:00:00 2001 From: Vendicated Date: Sun, 2 Oct 2022 02:46:41 +0200 Subject: UpdaterPage: Do not error if update check failed --- src/components/ErrorCard.tsx | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 src/components/ErrorCard.tsx (limited to 'src/components/ErrorCard.tsx') diff --git a/src/components/ErrorCard.tsx b/src/components/ErrorCard.tsx new file mode 100644 index 0000000..d0bf8c3 --- /dev/null +++ b/src/components/ErrorCard.tsx @@ -0,0 +1,21 @@ +import { Card } from "../webpack/common"; + +interface Props { + style?: React.CSSProperties; + className?: string; +} +export function ErrorCard(props: React.PropsWithChildren) { + return ( + + {props.children} + + ); +} -- cgit