import type { ComponentProps } from "react"; import React from "react"; import { Banner } from "@jobber/components-native"; export function BannerErrorExample( props: Partial>, ) { return ( {props.children ?? "Currently offline. Functionality is limited."} ); }