import React from "react"; import { Div, Text, Icon } from "react-native-magnus"; interface Props { message: string; } export const FetchingError = ({ message }: Props) => { return (
{message}
); };