mirror of
https://github.com/factorgroup/nightmarket.git
synced 2026-01-14 07:57:55 -05:00
13 lines
258 B
TypeScript
13 lines
258 B
TypeScript
import { h } from "preact";
|
|
import { colors } from "../helpers/theme";
|
|
|
|
const styles = {
|
|
marginBottom: 16,
|
|
padding: 8,
|
|
color: colors.dfred,
|
|
};
|
|
|
|
export function ErrorLabel({ error }) {
|
|
return error ? <p style={styles}>Error: {error.message}</p> : null;
|
|
}
|